/* Personalized Natal Report Page Styles */

.simple-hero {
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    padding: 20px 20px 10px 20px;
}

.simple-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b9413a;
    font-weight: 600;
    margin: 0;
}

/* Main Content Styles */
.report-content {
    padding: 10px 0;
}

.service-section {
    margin-bottom: 60px;
    border-radius: 15px;
    padding: 40px;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b9413a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b9413a;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-header h3 .service-subtitle {
    font-size: 0.9em;
    font-weight: 600;
    color: #b9413a;
    margin-left: 8px;
}

.service-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-details {
    text-align: center;
}

.service-note {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Remedies Section */
.remedies-section {
}

.remedies-content {
    text-align: center;
}

.remedies-content > p {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-weight: 500;
}

.remedies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.remedy-item {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.remedy-item:hover {
    transform: translateY(-3px);
}

.remedy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.remedy-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
}

.remedy-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.remedies-note {
    background: rgba(185, 65, 58, 0.2);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #b9413a;
}

.remedies-note p {
    color: #2c2c2c;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Annual Services */
.annual-section {
}

.annual-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #b9413a;
}

.cta-button.primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-hero h1 {
        font-size: 2.5rem;
    }
    
    .report-content {
        padding: 15px 0;
    }
    
    .service-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-header h3 {
        font-size: 1.6rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .remedies-grid {
        grid-template-columns: 1fr;
    }
    
    .annual-services {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description, .service-item p, .remedy-item p, .remedies-note p {
        text-align: justify;
    }
    
    /* Keep headings and special elements centered or left as needed */
    h1, h2, h3, h4, h5, h6, .btn, .button, .nav-link {
        text-align: inherit;
    }
}

@media (max-width: 480px) {
    .simple-hero h1 {
        font-size: 2rem;
    }
    
    .simple-hero {
        padding: 40px 15px;
    }
    
    .service-section {
        padding: 25px 15px;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .service-header h3 {
        font-size: 1.4rem;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .remedy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}
