@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap');
.banner {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8a 50%, #1e4a73 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    width: 80%;
    font-family: "DM Sans", sans-serif;
}

.highlight {
    color: #d4a574;
    position: relative;
    display: inline-block;
}

.underline-curve {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 12px;
    opacity: 0.8;
}

.banner-description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    width: 50%;
    margin: 0 auto;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
}

.star-1 {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 10%;
    animation: twinkle 3s infinite;
}

.star-2 {
    width: 2px;
    height: 2px;
    top: 25%;
    left: 20%;
    animation: twinkle 2.5s infinite 0.5s;
}

.star-3 {
    width: 4px;
    height: 4px;
    top: 20%;
    right: 15%;
    animation: twinkle 3.5s infinite 1s;
}

.star-4 {
    width: 2px;
    height: 2px;
    top: 40%;
    right: 25%;
    animation: twinkle 2s infinite 1.5s;
}

.star-5 {
    width: 3px;
    height: 3px;
    bottom: 30%;
    left: 15%;
    animation: twinkle 4s infinite 2s;
}

.star-6 {
    width: 2px;
    height: 2px;
    bottom: 25%;
    left: 30%;
    animation: twinkle 2.8s infinite 0.8s;
}

.star-7 {
    width: 3px;
    height: 3px;
    bottom: 20%;
    right: 20%;
    animation: twinkle 3.2s infinite 1.2s;
}

.star-8 {
    width: 4px;
    height: 4px;
    bottom: 35%;
    right: 35%;
    animation: twinkle 2.3s infinite 1.8s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .banner {
        height: 60vh;
        padding: 0 20px;
        align-items: end;
    }

    .banner-content {
        margin-bottom: 20%;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-description br {
        display: none;
    }

    .underline-curve {
        width: 100px;
        bottom: -6px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
        width: 100%;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .underline-curve {
        width: 80px;
        bottom: -4px;
    }
}


.transform-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #fff;
}

.transform-container {
    max-width: 800px;
    margin: 0 auto;
}

.transform-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.transform-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #A8C8E1;
    color: white;
}

.btn-primary:hover {
    background-color: #96BBD9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #D4A574;
    color: #333;
}

.btn-secondary:hover {
    background-color: #C19A6B;
    transform: translateY(-2px);
}

.btn-primary svg,
.btn-secondary svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .transform-section {
        padding: 3rem 1rem;
    }

    .transform-section h2 {
        font-size: 2.5rem;
    }

    .transform-section p {
        font-size: 1.1rem;
    }

    .buttons-container {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .transform-section {
        padding: 2rem 1rem;
    }

    .transform-section h2 {
        font-size: 2rem;
    }

    .transform-section p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}