/* Typography and Spacing Improvements */

/* Consistent font sizes */
h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

h5, h6 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Improved spacing for content sections */
section {
    padding: 80px 0;
}

/* Improved spacing for testimonials */
.testimonial-text {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Improved spacing for service lists */
.service-item, 
.apart-feature-item,
.feature-point {
    margin-bottom: 25px;
}

.service-content p,
.apart-features p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Mobile responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    h5, h6 {
        font-size: 1.1rem;
    }
}