/* Hero section styles */
.hero-content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    flex-direction: column;
    width: 100%;
}

.hero-content h1 {
    margin: 0 0 0.5rem 0;
}

/* Services section styles */
.services {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    padding: 2rem;
}

.services-text {
    max-width: 700px;
}

.services-text h1 {
    font-size: 2.3rem;
    margin: 0;
}

.services-text h2 {
    font-size: 2.1rem;
    margin: 0 0 0.5rem 0;
}

/* Contact section styles */
.contact-us {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    margin: 0 auto;
    flex-direction: column;
    padding: 2rem;
}

.contact-content {
    max-width: 700px;
    width: 100%;
}

.contact-us h1 {
    font-size: 2.3rem;
    margin: 0;
}

/* Responsive Design - 860px breakpoint */
@media (max-width: 860px) {
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0.8rem 0;
    }
    
    .hero-content t {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .services {
        padding: 1rem;
        max-width: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .services-text h1 {
        font-size: 1.8rem;
    }
    
    .services-text h2 {
        font-size: 1.6rem;
    }
    
    .services-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-us {
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .contact-us h1 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        max-width: 100%;
    }
}

/* Medium screens - between 860px and 570px */
@media (max-width: 860px) and (min-width: 571px) {
    .hero-content p {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content t {
        font-size: 0.8rem;
    }
}

@media (max-width: 570px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .hero-content t {
        font-size: 0.75rem;
    }
    
    .services-text h1 {
        font-size: 1.5rem;
    }
    
    .services-text h2 {
        font-size: 1.3rem;
    }
    
    .services-text p {
        font-size: 0.8rem;
    }
    
    .contact-us h1 {
        font-size: 1.5rem;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .hero-content t {
        font-size: 0.7rem;
    }
    
    .services-text h1 {
        font-size: 1.3rem;
    }
    
    .services-text h2 {
        font-size: 1.1rem;
    }
    
    .services-text p {
        font-size: 0.75rem;
    }
    
    .contact-us h1 {
        font-size: 1.3rem;
    }
}
