/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
body {
    font-family: 'Lefga', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background: transparent !important;
    background-color: transparent !important;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent !important;
    background: transparent !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: black;
}

.nav-contact-btn {
    background: #3dc3f2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: .02em;
}

.nav-contact-btn:hover {
    background: #2ba8d1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 195, 242, 0.3);
}

/* Navigation responsive design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .nav-contact-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0;
    margin-left: 100px;
    padding: 0 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.highlight {
    text-decoration: underline;
    text-decoration-color: #667eea;
    text-decoration-thickness: 3px;
}


.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.cta-button {
    background: #3dc3f2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Sponsored section */
.sponsored-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.sponsored-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.sponsored-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sponsored-img {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.sponsored-img:hover {
    opacity: 1;
}


@media (max-width: 1024px) {
    .hero-container {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .sponsored-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sponsored-logos {
        gap: 0.75rem;
    }
    
    .sponsored-img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .sponsored-text {
        font-size: 0.8rem;
    }
    
    .sponsored-img {
        max-height: 30px;
    }
}

/* Mission section */
.mission {
    background-color: #fbaa19;
    padding: 4rem 0;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-content {
    max-width: 500px;
}

.mission-title {
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.mission-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Mission responsive design */
@media (max-width: 1024px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .mission-title {
        font-size: 2.2rem;
    }
    
    .mission-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mission {
        padding: 3rem 0;
    }
    
    .mission-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .mission-description {
        font-size: 1rem;
    }
}

/* How It Works section */
.how-it-works {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.how-it-works-content {
    max-width: 600px;
}

.nl4-logo h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3dc3f2;
    margin-bottom: 1rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: black;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.how-it-works-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    position: relative;
    padding-left: 3rem;
}

.step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #3dc3f2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.steps {
    counter-reset: step-counter;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
    margin-bottom: 0.2rem;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.step-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.highlight-yellow {
    color: #fbaa19;
    font-weight: 700;
}

/* How It Works responsive design */
@media (max-width: 1024px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-it-works-content {
        max-width: 100%;
        text-align: center;
    }
    
    .how-it-works-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 3rem 0;
    }
    
    .how-it-works-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .how-it-works-title {
        font-size: 2.2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.1rem;
    }
    
    .step {
        padding-left: 2.5rem;
    }
    
    .step::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}

/* Companies section */
.companies {
    background-color: #000000;
    padding: 4rem 0;
}

.companies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.companies-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem !important;
    line-height: 1.4;
    letter-spacing: .02em;
    max-width: 800px;
    margin: 0 auto;
}

.logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/* Companies responsive design */
@media (max-width: 1024px) {
    .logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .companies-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .companies {
        padding: 3rem 0;
    }
    
    .companies-container {
        padding: 0 1rem;
    }
    
    .companies-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logo {
        max-width: 100px;
    }
}

/* Team section */
.team {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coaches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.coach-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.coach-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
}

.coach-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
    margin-bottom: 0.5rem;
    letter-spacing: .02em;
}

.coach-title {
    font-size: 1rem;
    color: #3dc3f2;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: .02em;
}

.coach-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    text-align: left;
}

/* Team responsive design */
@media (max-width: 1024px) {
    .coaches {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 3rem 0;
    }
    
    .team-container {
        padding: 0 1rem;
    }
    
    .team-title {
        font-size: 1.8rem;
    }
    
    .team-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .coaches {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coach-card {
        padding: 1.5rem;
    }
    
    .coach-image {
        width: 100px;
        height: 100px;
    }
    
    .coach-name {
        font-size: 1.2rem;
    }
    
    .coach-title {
        font-size: 0.9rem;
    }
    
    .coach-description {
        font-size: 0.9rem;
    }
}

/* Testimonials section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 3rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 400px;
}

.testimonial-card {
    opacity: 0;
    visibility: hidden;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(61, 195, 242, 0.1);
    transition: all 0.5s ease;
    transform: translateY(20px);
    position: absolute;
    width: 100%;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1.02);
    position: relative;
}

.testimonial-image {
    margin-bottom: 2rem;
}

.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 4px solid #3dc3f2;
    box-shadow: 0 4px 15px rgba(61, 195, 242, 0.3);
}

.testimonial-quote {
    font-size: 1.3rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #3dc3f2;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    color: #3dc3f2;
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: serif;
    opacity: 0.3;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3dc3f2;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.dot.active {
    background-color: #3dc3f2;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(61, 195, 242, 0.4);
}

.dot:hover {
    background-color: #3dc3f2;
    transform: scale(1.1);
    border-color: rgba(61, 195, 242, 0.3);
}

/* Testimonials responsive design */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .client-image {
        width: 60px;
        height: 60px;
    }
}

/* FAQ section */
.faq {
    background-color: #64459bb3;
    padding: 4rem 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 3rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
    margin: 0;
    letter-spacing: .02em;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 2rem;
    color: black;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.6;
    margin: 1rem 0;
}

.faq-answer p:first-child {
    margin-top: 1.5rem;
}

/* FAQ responsive design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem 0;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        font-size: 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Contact section */
.contact {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.contact-form-section {
    max-width: 500px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 2rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lefga', Arial, sans-serif;
    transition: border-color 0.3s ease;
    background-color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3dc3f2;
    box-shadow: 0 0 0 3px rgba(61, 195, 242, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aec0;
}

/* Contact responsive design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3dc3f2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 250px;
}

.footer-column a {
    display: block;
    color: #e2e8f0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3dc3f2;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3dc3f2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-info p {
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3dc3f2;
}

.footer-copyright {
    color: #a0aec0;
    margin: 0;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/hero.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.our-story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.our-story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.our-story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* About Mission Section */
.about-mission {
    background-color: #3dc3f2;
    padding: 4rem 0;
    text-align: center;
}

.about-mission-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-mission-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: black;
    font-style: italic;
}

/* Our Values Section */
.our-values {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.our-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.our-values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3dc3f2;
}

.value-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: white;
    padding: 4rem 0;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.why-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, #3dc3f2 0%, #64459bb3 100%);
    padding: 4rem 0;
    text-align: center;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .our-story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    .our-story-title,
    .about-mission-title,
    .our-values-title,
    .why-choose-title,
    .about-cta-title {
        font-size: 2rem;
    }
    
    .value-item,
    .why-item {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-main {
    background-color: #f8fafc;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.contact-main-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-main-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-main-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-main-form input,
.contact-main-form textarea,
.contact-main-form select {
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lefga', Arial, sans-serif;
    transition: border-color 0.3s ease;
    background-color: white;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus,
.contact-main-form select:focus {
    outline: none;
    border-color: #3dc3f2;
    box-shadow: 0 0 0 3px rgba(61, 195, 242, 0.1);
}

.contact-main-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-main-form input::placeholder,
.contact-main-form textarea::placeholder {
    color: #a0aec0;
}

.contact-main-form select {
    cursor: pointer;
}

.contact-main-form .cta-button {
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 2rem 0;
    }
    
    .contact-main-content {
        padding: 2rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-main-description {
        font-size: 1.1rem;
    }
    
    .contact-main-form {
        gap: 1rem;
    }
    
    .contact-main-form input,
    .contact-main-form textarea,
    .contact-main-form select {
        padding: 1rem;
    }
}

/* Terms Page Styles */
.terms-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/hero.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.terms-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terms-hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.terms-content {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-main {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.terms-footer p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.terms-footer strong {
    color: #2d3748;
}

/* Terms Page Responsive */
@media (max-width: 1024px) {
    .terms-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        min-height: 40vh;
    }
    
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-hero-description {
        font-size: 1.1rem;
    }
    
    .terms-main {
        padding: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 0.95rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/hero.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.privacy-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-main {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.privacy-footer p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.privacy-footer strong {
    color: #2d3748;
}

/* Privacy Policy Page Responsive */
@media (max-width: 1024px) {
    .privacy-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        min-height: 40vh;
    }
    
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero-description {
        font-size: 1.1rem;
    }
    
    .privacy-main {
        padding: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
}
.announcement {
    background-color: #fbaa19;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
}