
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
        }
        .contact-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
        }
        .section-head {
            text-align: center;
            margin-bottom: 70px;
        }
        .section-head h1 {
            font-size: 42px;
            font-weight: 600;
            color: #0f172a;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .section-head .divider {
            width: 80px;
            height: 3px;
            background-color: #2563eb;
            margin: 0 auto 20px;
        }
        .section-head p {
            font-size: 16px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-card-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 32px;
        }
        .contact-card {
            background: #ffffff;
            padding: 48px 36px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }
        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
            border-top: 4px solid #2563eb;
        }
        .contact-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .contact-card h3 span {
            width: 36px;
            height: 36px;
            background-color: #eff6ff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #2563eb;
        }
        .contact-item {
            margin-bottom: 20px;
            font-size: 16px;
            color: #475569;
        }
        .contact-item strong {
            display: block;
            color: #0f172a;
            font-weight: 500;
            margin-bottom: 6px;
        }
        .contact-item a {
            color: #2563eb;
            text-decoration: none;
            word-break: break-all;
        }
        .contact-item a:hover {
            text-decoration: underline;
        }
        .footer-note {
            text-align: center;
            margin-top: 80px;
            color: #94a3b8;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .section-head h1 {
                font-size: 30px;
            }
            .contact-wrap {
                padding: 50px 16px;
            }
            .contact-card {
                padding: 36px 24px;
            }
        }
    