        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a237e;
            --primary-dark: #0d1442;
            --accent: #c62828;
            --accent-dark: #a51f1f;
            --text: #2c2c2c;
            --text-light: #6b7280;
            --border: #e5e7eb;
        }

        body {
            font-family: 'Inter', Arial, sans-serif;
            background: #f0f2f5;
            color: var(--text);
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Poppins', Arial, sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul {
            list-style: none;
        }

        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
            padding: 50px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(198, 40, 40, 0.15) 0, transparent 45%);
        }

        .hero-inner {
            position: relative;
            z-index: 1;
        }

        .hero .breadcrumb {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 14px;
        }

        .hero .breadcrumb a:hover {
            color: #fff;
        }

        .hero h1 {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .hero p {
            max-width: 620px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        section {
            padding: 50px 0;
        }

        .section-head {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 36px;
        }

        .section-head .eyebrow {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.78rem;
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-head h2 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }

        .section-head p {
            color: var(--text-light);
            font-size: 0.92rem;
        }

        .contact-cards {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            padding: 30px 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: -24px;
            position: relative;
            z-index: 2;
        }

        .contact-card {
            text-align: center;
            padding: 0 14px;
            border-right: 1px solid var(--border);
        }

        .contact-card:last-child {
            border-right: none;
        }

        .contact-card .icon-box {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            margin: 0 auto 14px;
            background: #e8eaf6;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-card .icon-box.accent {
            background: #fdeaea;
            color: var(--accent);
        }

        .contact-card .label {
            font-size: 0.72rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: .03em;
            margin-bottom: 4px;
        }

        .contact-card .value {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--text);
            font-family: 'Poppins', sans-serif;
        }

        .contact-card .sub {
            display: block;
            font-weight: 400;
            color: var(--text-light);
            font-size: 0.82rem;
            margin-top: 3px;
        }

        .kontak-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 24px;
            align-items: stretch;
        }

        .map-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        .map-card iframe {
            width: 100%;
            height: 100%;
            min-height: 320px;
            border: 0;
            display: block;
        }

        .social-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            padding: 30px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .social-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .social-card p {
            font-size: 0.88rem;
            color: var(--text-light);
            margin-bottom: 22px;
        }

        .social-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-list a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 10px;
            background: #f8f9fb;
            color: var(--text);
            font-size: 0.88rem;
            font-weight: 600;
            transition: all .2s;
        }

        .social-list a i {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #fff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            flex-shrink: 0;
        }

        .social-list a:hover {
            background: var(--primary);
            color: #fff;
        }

        .social-list a:hover i {
            color: var(--primary);
        }

        @media(max-width:900px) {
            .contact-cards {
                grid-template-columns: 1fr;
            }

            .contact-card {
                border-right: none;
                border-bottom: 1px solid var(--border);
                padding-bottom: 18px;
                margin-bottom: 4px;
            }

            .contact-card:last-child {
                border-bottom: none;
                padding-bottom: 0;
                margin-bottom: 0;
            }

            .kontak-grid {
                grid-template-columns: 1fr;
            }

            .map-card iframe {
                min-height: 260px;
            }
        }

        @media(max-width:560px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            section {
                padding: 36px 0;
            }

            .contact-cards {
                padding: 22px 16px;
            }
        }