* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3e50;
    background: #fafbfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVIGATION ========== */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(217, 122, 142, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #2d3e50;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.heart-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.heart-logo svg {
    filter: drop-shadow(0 2px 4px rgba(217, 122, 142, 0.15));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #2d3e50;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #D97A8E;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}



/* ========== RESPONSIVE NAV ========== */

.nav-links2 {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links2 a {
    text-decoration: none;
    color: #2d3e50;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.nav-links2 a:hover {
   color: #2d3e50;
}

.nav-links2 a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    transition: width 0.3s;
}



/* ========== NAV CONTACT (WHATSAPP) ========== */
.nav-contact {
    display: flex;
    align-items: center;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 140px 0 140px;
    background: linear-gradient(135deg, #fef5f7 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-form {
    position: relative;
    z-index: 2;
}

.form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(217, 122, 142, 0.15);
    border: 2px solid rgba(217, 122, 142, 0.1);
}

.form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3e50;
    margin-bottom: 25px;
    text-align: center;
}

.form-box .form-group {
    margin-bottom: 18px;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8e9eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafbfc;
}

.form-box input::placeholder {
    color: #999;
}

.form-box input:focus,
.form-box select:focus {
    outline: none;
    border-color: #D97A8E;
    background: white;
    box-shadow: 0 0 0 3px rgba(217, 122, 142, 0.1);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(217, 122, 142, 0.25);
    margin-top: 5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 122, 142, 0.35);
}

.form-disclaimer {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.hero-decoration.left {
    width: 400px;
    height: 400px;
    background: #D97A8E;
    top: -100px;
    left: -100px;
}

.hero-decoration.right {
    width: 350px;
    height: 350px;
    background: #6BA3D6;
    bottom: -50px;
    right: -50px;
}

.free-banner {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2d3e50;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    color: #555;
    max-width: 650px;
    margin: 0 0 40px;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    border: none;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(217, 122, 142, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 122, 142, 0.35);
}

/* ========== FEATURED CONSULTATION BANNER ========== */
.featured-consultation-banner {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #fef5f7 0%, #f0f4ff 100%);
    position: relative;
   
}

.featured-consultation-banner .container {
    max-width: 900px;
}

.banner-content {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    border-radius: 25px;
    padding: 36px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(217, 122, 142, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.banner-content::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.banner-text {
    position: relative;
    z-index: 2;
}

.banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.banner-feature {
    color: white;
    font-size: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.banner-cta {
    background: white;
    color: #D97A8E;
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
/* ========== WHATSAPP POPUP ========== */
.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37,211,102,0.18);
    cursor: pointer;
    z-index: 2000;
}
.whatsapp-fab .fab-dot {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.whatsapp-fab .fab-icon svg { width: 30px; height: 30px; display: block; }
.whatsapp-fab .fab-label { display: none; }

.whatsapp-popup {
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 360px;
    max-width: calc(100% - 48px);
    background: #f6efe7; /* soft beige */
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: visible;
    z-index: 2001;
    display: none;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    transform-origin: bottom right;
}
.whatsapp-popup.open { display: block; transform: translateY(0); opacity: 1; }

.whatsapp-header {
    background: #22C760;
    padding: 14px 16px;
    color: #111;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wh-header-left { display:flex; gap:10px; align-items:center; }
.wh-logo svg { width:42px; height:42px; border-radius:8px; }
.wh-texts { line-height:1; }
.whatsapp-title { font-weight:800; font-size:16px; color:#111; }
.whatsapp-sub { font-size:13px; color:rgba(0,0,0,0.6); }
.whatsapp-close { position:absolute; right:10px; top:10px; background:transparent; border:none; font-size:16px; cursor:pointer; color:#111; }

.ellipsis-bubble { position:absolute; left:34px; top:72px; background:#fff; padding:6px 10px; border-radius:20px; box-shadow:0 6px 18px rgba(0,0,0,0.08); font-weight:700; }
.whatsapp-body { padding: 50px 18px 18px 18px; }
.chat-bubble { background: #fff; padding: 18px; border-radius: 18px; color: #111; box-shadow: 0 12px 30px rgba(12,24,48,0.06); }
.chat-row { display:flex; align-items:flex-start; gap:12px; }
.chat-text { margin:6px 0 0 0; color:#333; }
.chat-time { margin-left:auto; color:#666; font-size:13px; font-weight:700; }

.whatsapp-start { display:block; width:100%; margin-top:12px; background:#22C760; color:#111; border:none; padding:14px; border-radius:28px; font-weight:800; cursor:pointer; box-shadow:0 8px 24px rgba(0,0,0,0.08); }
.whatsapp-start .start-icon { margin-right:10px; }
.whatsapp-start:hover { filter:brightness(0.98); transform:translateY(-2px); }

@media (max-width: 600px) {
    .whatsapp-popup { right:12px; left:12px; width:auto; bottom:88px; }
    .whatsapp-fab { right:12px; bottom:12px; }
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D97A8E, #6BA3D6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 122, 142, 0.15);
    background: white;
}

.value-icon {
    font-size: 52px;
    margin-bottom: 20px;
    display: block;
}

/* ========== VALUES / WHY CHOOSE PUREMATCH ========== */
.values {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, transparent 100%);
}

.values h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    align-items: start;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(12,24,48,0.06);
    transition: all 0.3s;
    position: relative; /* needed for the ::before bar */
}

.value-icon {
    font-size: 42px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3e50;
}

.value-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ========== COUNSELING SECTION ========== */
.counseling {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf9fc 0%, #f8f9ff 100%);
}

.counseling h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3e50;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.counseling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.counseling-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
    border-top: 4px solid transparent;
    position: relative;
}

.counseling-card:nth-child(1) {
    border-top-color: #D97A8E;
}

.counseling-card:nth-child(2) {
    border-top-color: #6BA3D6;
}

.counseling-card:nth-child(3) {
    border-top-color: #9B6B9D;
}

.counseling-card:nth-child(4) {
    border-top-color: #6B9D7A;
}

.card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.counseling-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 122, 142, 0.2);
}

.counseling-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3e50;
}

.counseling-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ========== DEVELOPMENT SECTION ========== */
.development {
    padding: 100px 0;
    background: white;
}

.development h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3e50;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.dev-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #fef5f7, #f0f4ff);
    border-radius: 18px;
    transition: all 0.3s;
    border: 1px solid rgba(217, 122, 142, 0.1);
}

.dev-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 122, 142, 0.15);
}

.dev-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.dev-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3e50;
}

.dev-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ========== FREE CONSULTATION SECTION ========== */
.free-consultation {
    padding: 80px 0;
    background: linear-gradient(135deg, #D97A8E15, #6BA3D615);
}

.consultation-box {
    background: white;
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(217, 122, 142, 0.15);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.consultation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    border-radius: 25px;
    padding: 2px;
    z-index: -1;
}

.badge {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

.consultation-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3e50;
}

.free-highlight {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultation-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 32px;
}

.feature-item span {
    font-weight: 600;
    color: #2d3e50;
    font-size: 15px;
}

.claim-button {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    padding: 16px 44px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(217, 122, 142, 0.25);
    cursor: pointer;
}

.claim-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(217, 122, 142, 0.35);
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3e50;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(217, 122, 142, 0.15);
}

.contact-info {
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    text-align: left;
    color: white;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 25px 0;
    font-size: 16px;
}

.info-icon {
    font-size: 24px;
}

.contact-form {
    padding: 60px 50px;
    background: white;
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #2d3e50;
    text-align: left;
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e9eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafbfc;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D97A8E;
    background: white;
    box-shadow: 0 0 0 3px rgba(217, 122, 142, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #D97A8E, #6BA3D6);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(217, 122, 142, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(217, 122, 142, 0.35);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #888;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, #1a2838, #2d3e50);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-contact {
        margin-left: auto;
    }

    .whatsapp-link {
        padding: 8px 12px;
        font-size: 12px;
    }

    .whatsapp-icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .form-box {
        padding: 30px;
    }

    .form-box h3 {
        font-size: 20px;
    }

    .featured-consultation-banner {
        padding: 0 0 40px;
    }

    .banner-content {
        padding: 40px 30px;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    .banner-features {
        gap: 15px;
    }

    .banner-feature {
        font-size: 13px;
        padding: 8px 14px;
    }

    .values h2,
    .counseling h2,
    .development h2,
    .contact h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .values-grid,
    .counseling-grid,
    .development-grid {
        gap: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .consultation-box {
        padding: 40px 30px;
    }

    .consultation-box h2 {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 14px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-features {
        flex-direction: column;
        gap: 10px;
    }

    .value-card,
    .counseling-card,
    .dev-card {
        padding: 30px 20px;
    }

    .free-banner {
        font-size: 12px;
        padding: 10px 20px;
    }
}