/* Love/Marriage Compatibility Analysis 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 */
.main-content {
    padding: 10px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

.content-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b9413a;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.content-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b9413a;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: justify;
}

.content-wrapper .tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: #b9413a;
    text-align: center;
    font-style: italic;
    margin: 30px 0;
    padding: 20px;
    background: rgba(185, 65, 58, 0.1);
    border-radius: 10px;
    border-left: 4px solid #b9413a;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 1.2rem;
    color: #2c2c2c;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Analysis Areas */
.analysis-areas {
    margin-bottom: 60px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.analysis-item {
    background: #dad2b0;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.analysis-item:hover {
    transform: translateY(-5px);
    background: #dad2b0;
    border-color: rgba(185, 65, 58, 0.4);
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.2);
}

.analysis-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.analysis-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.analysis-item h3 {
    font-size: 1.4rem;
    color: #b9413a;
    margin-bottom: 15px;
    font-weight: 600;
}

.analysis-item p {
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}

.content-block {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-block p {
    margin: 0;
    color: #2c2c2c;
}

.pricing-section {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.pricing-item {
    background: rgba(185, 65, 58, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #b9413a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pricing-text {
    flex: 1;
    font-weight: 600;
    color: #2c2c2c;
}

.pricing-amount {
    flex-shrink: 0;
    font-weight: 600;
    color: #2c2c2c;
    white-space: nowrap;
}

.contact-block {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.contact-block p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-block a {
    color: #b9413a;
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-block i {
    color: #b9413a;
    margin-right: 8px;
    width: 20px;
}

.privacy-block {
    background: rgba(185, 65, 58, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #b9413a;
    margin-top: 30px;
}

.privacy-block p {
    margin: 0;
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-hero h1 {
        font-size: 2.5rem;
    }
    
    .main-content {
        padding: 15px 0;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.6rem;
    }
    
    .content-wrapper .tagline {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .content-wrapper p {
        font-size: 1rem;
        text-align: justify;
    }
    
    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description, .content-block p, .analysis-item 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;
    }
    
    .content-block {
        padding: 25px 20px;
        margin-bottom: 15px;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pricing-amount {
        white-space: normal;
    }
    
    .contact-block {
        padding: 25px 20px;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .analysis-item {
        padding: 25px 20px;
    }
    
    .analysis-icon {
        width: 70px;
        height: 70px;
    }
    
    .analysis-icon i {
        font-size: 1.8rem;
    }
    
    .analysis-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .simple-hero h1 {
        font-size: 2rem;
    }
    
    .simple-hero {
        padding: 40px 15px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .content-wrapper .tagline {
        font-size: 1.1rem;
        padding: 12px;
    }
    
    .content-wrapper p {
        font-size: 0.95rem;
    }
    
    .content-block {
        padding: 20px 15px;
        margin-bottom: 12px;
    }
    
    .pricing-section {
        padding: 20px 15px;
    }
    
    .contact-block {
        padding: 20px 15px;
    }
    
    .contact-block p {
        font-size: 1rem;
    }
    
    .analysis-item {
        padding: 20px 15px;
    }
    
    .analysis-icon {
        width: 60px;
        height: 60px;
    }
    
    .analysis-icon i {
        font-size: 1.5rem;
    }
    
    .analysis-item h3 {
        font-size: 1.1rem;
    }
}
