.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    box-shadow:
            inset 0 0 10px rgba(255, 255, 255, 0.5),
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 15px rgba(173, 216, 230, 0.5);
    animation: float linear forwards;
    opacity: 0;
    filter: blur(1px);
    will-change: transform, opacity;
}

.bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 20%;
    height: 20%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.8);
        opacity: 0.7;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateX(10px) scale(1);
        opacity: 0.9;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-50vh) translateX(20px) scale(0.95);
        opacity: 0;
    }
}

/* Hero sectie styling */
.hero-section {
    position: relative;
    background-color: #1e3a8a;
    color: white;
    padding: 4rem 1rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 6rem 1.5rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

}
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.7rem
    }
}

.hero-subtitle {
    color: #ea580c;
    display: block;
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #ea580c;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 0.5rem;
}

.cta-button:hover {
    background-color: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.cta-button i {
    margin-right: 0.5rem;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    text-align: left;
}

.feature-icon {
    font-size: 1.5rem;
    color: #ea580c;
    margin-right: 1rem;
    min-width: 40px;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
    opacity: 0.9;
}