       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html,
        body {
            height: 100%;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        body {
            font-family: 'Roboto', sans-serif;
            font-size: 18px;
            color: #1e1e2a;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 10px 16px 40px;
            overflow-y: auto;
            min-height: 100vh;
            background: linear-gradient(180deg, #eef0f2 0%, #dce0e6 40%, #c8ced8 75%, #b8bfca 100%);
            background-attachment: fixed;
        }
        .app-card {
            position: relative;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(24px) saturate(1.8);
            -webkit-backdrop-filter: blur(24px) saturate(1.8);
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 30px 80px rgba(13, 27, 62, 0.08), 0 6px 30px rgba(13, 27, 62, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
            padding: 2.8rem 3rem 2.8rem;
            width: 70%;
            max-width: 1240px;
            margin: 0 auto;
        }
        .brand-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            margin-bottom: 0.2rem;
        }
        .top-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .top-links a {
            color: #1e2a3a;
            text-decoration: none;
            transition: color 0.2s, opacity 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.01em;
        }
        .top-links a:hover {
            color: #e11313;
            opacity: 0.85;
        }
        .top-links i {
            color: #b8943c;
            font-size: 1.5rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #0d1b3e;
            margin: 0.2rem 0 0.1rem;
            line-height: 1.05;
        }
        h1 span {
            color: #0d1b3e;
        }
        .subhead {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0d1b3e;
            margin-bottom: 1rem;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }
        .subhead i {
            color: #0d1b3e;
            margin: 0 4px;
        }
        .divider {
            width: 80px;
            height: 4px;
            background: #0d1b3e;
            border-radius: 3px;
            margin: 0.6rem 0 1.2rem;
        }
        .desc {
            font-size: 1.5rem;
            color: #1a1a1a;
            line-height: 1.6;
            margin-bottom: 2.2rem;
            font-weight: 500;
            max-width: 90%;
        }
        .desc strong {
            color: #0d1b3e;
            font-weight: 800;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .service-item {
            background: rgba(255, 255, 255, 0.50);
            backdrop-filter: blur(12px) saturate(1.4);
            -webkit-backdrop-filter: blur(12px) saturate(1.4);
            border-radius: 20px;
            padding: 1.6rem 0.8rem 1.2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 16px rgba(13, 27, 62, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
            cursor: default;
        }
        .service-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(13, 27, 62, 0.08);
            background: rgba(255, 255, 255, 0.70);
            border-color: rgba(184, 148, 60, 0.25);
        }
        .service-item i {
            font-size: 3.2rem;
            color: #0d1b3e;
            display: block;
            margin-bottom: 8px;
            transition: transform 0.2s ease;
        }
        .service-item:hover i {
            transform: scale(1.04);
        }
        .service-item .service-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: #0d1b3e;
            display: block;
            line-height: 1.3;
            margin-bottom: 4px;
            letter-spacing: 0.01em;
        }
        .service-item .service-desc {
            font-size: 0.95rem;
            color: #3a3a4a;
            font-weight: 500;
            line-height: 1.3;
            margin: 0;
            max-width: 100%;
        }
        .contacts-wrapper {
            margin-top: 0.8rem;
        }
        .contacts-title {
            font-size: 2rem;
            font-weight: 900;
            color: #0d1b3e;
            margin-bottom: 1.6rem;
            letter-spacing: 0.02em;
        }
        .contacts-grid {
            display: flex;
            flex-direction: column;
            gap: 2.4rem;
        }
        .address-card {
            width: 100%;
        }
        .address-card .address-line {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 0.6rem;
        }
        .address-card .address-line i {
            font-size: 2rem;
            color: #0d1b3e;
            width: 2.6rem;
            text-align: center;
        }
        .address-card .address-line a {
            color: #1e2a3a;
            text-decoration: none;
            transition: color 0.2s, opacity 0.2s;
            border-bottom: 1px solid transparent;
        }
        .address-card .address-line a:hover {
            color: #e11313;
            border-bottom-color: #e11313;
        }
        .map-container {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(13, 27, 62, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
        }
        .map-container iframe {
            display: block;
            width: 100%;
            height: 340px;
            border: none;
        }
        .contacts-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.4rem 4rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(13, 27, 62, 0.08);
            margin-top: 0.8rem;
            margin-bottom: 0.5rem;
        }
        .contacts-info .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-weight: 900;
            font-size: 2.2rem;
        }
        .contacts-info .contact-item i {
            font-size: 2.6rem;
            color: #0d1b3e;
            width: 3rem;
            text-align: center;
        }
        .contacts-info .contact-item a {
            color: #0d1b3e;
            text-decoration: none;
            transition: color 0.2s, opacity 0.2s;
        }
        .contacts-info .contact-item a:hover {
            color: #e11313;
            opacity: 0.85;
        }

        @media (max-width: 1200px) {
            body {
                font-size: 16px;
                padding: 34px 12px 34px;
            }
            .app-card {
                padding: 2.2rem 2rem 2.2rem;
                width: 80%;
            }
            .top-links {
                font-size: 1.1rem;
            }
            .top-links i {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            .subhead {
                font-size: 1rem;
            }
            .desc {
                font-size: 1.3rem;
            }
            .service-item i {
                font-size: 2.8rem;
            }
            .service-item .service-name {
                font-size: 1.1rem;
            }
            .service-item .service-desc {
                font-size: 0.85rem;
            }
            .address-card .address-line {
                font-size: 1.2rem;
            }
            .contacts-info .contact-item {
                font-size: 2rem;
            }
            .contacts-info .contact-item i {
                font-size: 2.4rem;
            }
            .map-container iframe {
                height: 300px;
            }
        }
        @media (max-width: 991.98px) {
            .services-grid {
                display: flex;
                flex-direction: column;
                gap: 0.6rem;
            }
            .service-item {
                display: flex;
                align-items: center;
                gap: 0.8rem;
                text-align: left;
                padding: 0.6rem 1rem;
                flex-direction: row;
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.50);
                backdrop-filter: blur(12px) saturate(1.4);
                border: 1px solid rgba(255, 255, 255, 0.4);
                transition: background 0.2s, box-shadow 0.2s;
                transform: none !important;
            }
            .service-item:hover {
                transform: none !important;
                box-shadow: 0 4px 16px rgba(13, 27, 62, 0.06);
                background: rgba(255, 255, 255, 0.70);
            }
            .service-item i {
                font-size: 2rem;
                margin-bottom: 0;
                flex-shrink: 0;
            }
            .service-item .service-name {
                font-size: 1rem;
                margin-bottom: 0;
            }
            .service-item .service-desc {
                font-size: 0.8rem;
                margin: 0;
            }
            .service-item .service-desc {
                margin-top: 0.1rem;
            }
        }
        @media (max-width: 992px) {
            body {
                font-size: 15px;
                padding: 30px 8px 30px;
            }
            .app-card {
                padding: 2rem 1.5rem 2rem;
                width: 90%;
                border-radius: 28px;
            }
            .brand-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.3rem;
            }
            .top-links {
                font-size: 1rem;
                gap: 0.8rem 1.2rem;
            }
            .top-links i {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2rem;
            }
            .subhead {
                font-size: 0.95rem;
            }
            .desc {
                font-size: 1.1rem;
                max-width: 100%;
            }
            .contacts-title {
                font-size: 1.6rem;
            }
            .address-card .address-line {
                font-size: 1.1rem;
                gap: 10px;
            }
            .address-card .address-line i {
                font-size: 1.6rem;
                width: 2rem;
            }
            .map-container iframe {
                height: 250px;
            }
            .contacts-info {
                gap: 1.6rem 2.4rem;
            }
            .contacts-info .contact-item {
                font-size: 1.6rem;
            }
            .contacts-info .contact-item i {
                font-size: 2rem;
                width: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            body {
                font-size: 14px;
                padding: 24px 6px 24px;
            }
            .app-card {
                padding: 1.6rem 1rem 1.6rem;
                width: 95%;
                border-radius: 24px;
            }
            .top-links {
                font-size: 0.9rem;
                gap: 0.6rem 1rem;
            }
            .top-links i {
                font-size: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .subhead {
                font-size: 0.85rem;
                margin-bottom: 0.6rem;
            }
            .divider {
                width: 50px;
                height: 3px;
                margin: 0.4rem 0 0.8rem;
            }
            .desc {
                font-size: 0.95rem;
                margin-bottom: 1.6rem;
            }
            .contacts-title {
                font-size: 1.3rem;
                margin-bottom: 1.2rem;
            }
            .address-card .address-line {
                font-size: 0.95rem;
                gap: 8px;
                flex-wrap: wrap;
            }
            .address-card .address-line i {
                font-size: 1.3rem;
                width: 1.6rem;
            }
            .map-container iframe {
                height: 200px;
            }
            .contacts-info {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
                padding-top: 1.4rem;
                margin-bottom: 0.3rem;
            }
            .contacts-info .contact-item {
                font-size: 1.4rem;
            }
            .contacts-info .contact-item i {
                font-size: 1.8rem;
                width: 2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 12px;
                padding: 18px 4px 18px;
            }
            .app-card {
                padding: 1.2rem 0.6rem 1.2rem;
                width: 98%;
                border-radius: 20px;
            }
            .top-links {
                font-size: 0.75rem;
                gap: 0.4rem 0.6rem;
            }
            .top-links i {
                font-size: 0.8rem;
            }
            h1 {
                font-size: 1.4rem;
            }
            .subhead {
                font-size: 0.7rem;
            }
            .desc {
                font-size: 0.8rem;
                margin-bottom: 1.2rem;
            }
            .service-item i {
                font-size: 1.6rem;
            }
            .service-item .service-name {
                font-size: 0.75rem;
            }
            .service-item .service-desc {
                font-size: 0.65rem;
            }
            .contacts-title {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }
            .address-card .address-line {
                font-size: 0.8rem;
                gap: 6px;
            }
            .address-card .address-line i {
                font-size: 1rem;
                width: 1.4rem;
            }
            .map-container iframe {
                height: 150px;
            }
            .contacts-info .contact-item {
                font-size: 1.1rem;
            }
            .contacts-info .contact-item i {
                font-size: 1.4rem;
                width: 1.6rem;
            }
        }