/* Global Typography and Style Consistency for All Pages */

/* Base Typography Settings */
body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 400;
}

/* Heading Consistency */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Section Headers */
.section-header, 
.page-header h1,
.guide-section h3,
.styles-showcase h2,
.contact-form-container h2,
.contact-form h3 {
    text-align: center;
    color: var(--primary-color);
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

/* Consistent CTA Styling */
.final-cta {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 50%, #ddeeff 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #87ceeb;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Consistent Button Styles */
.btn-primary-large, 
.btn-secondary-large {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 15px 40px;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* List Styling Consistency */
ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

li {
    margin-bottom: 10px;
}

li:last-child {
    margin-bottom: 0;
}

/* Card Style Consistency */
.card, 
.gallery-item, 
.style-card, 
.faq-item,
.info-category,
.contact-card,
.process-card,
.guarantee-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Form Style Consistency */
label {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #2c2c2c;
}

input, select, textarea {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Consistent Paragraph Styling */
p {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #4a4a4a);
    margin-bottom: 1rem;
}

/* Fix Various Component Typography */
.photo-tips-list {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 1.2rem;
}

.process-step-content h4 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.info-category h4 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.gallery-item-info h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.gallery-item-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-section h4 {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}