/* About & Contact Pages Styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* Image Quality Enhancement */
.page-hero,
.cta-section,
.image-placeholder,
.icon-box::before {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Active Nav Link */
.nav a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.15);
}

.nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Page Hero Section */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero {
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%),
        url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=2400&q=95&fit=crop&auto=format&sharp=10');
    filter: contrast(1.05) brightness(1.02);
}

.contact-hero {
    background-image: 
        linear-gradient(135deg, rgba(72, 187, 120, 0.5) 0%, rgba(56, 178, 172, 0.5) 100%),
        url('https://images.unsplash.com/photo-1516534775068-ba3e7458af70?w=2400&q=95&fit=crop&auto=format&sharp=10');
    filter: contrast(1.05) brightness(1.02);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    animation: hero-pulse 8s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
}

.content-section.alt-bg {
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header.centered h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: #718096;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.icon-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background-image: 
        linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%),
        url('https://images.unsplash.com/photo-1544776193-352d25ca82cd?w=1200&q=95&fit=crop&auto=format&sharp=10');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    filter: contrast(1.05) brightness(1.02);
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.icon-box:hover::before {
    opacity: 0.5;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.icon-circle svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.icon-box p {
    color: #718096;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-image {
    position: relative;
}

.image-placeholder {
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%),
        url('https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a?w=1200&q=95&fit=crop&auto=format&sharp=10');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    filter: contrast(1.05) brightness(1.02);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.05);
    backdrop-filter: blur(1px);
}

.placeholder-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:nth-child(1) {
    border-top-color: #667eea;
}

.value-card:nth-child(2) {
    border-top-color: #48bb78;
}

.value-card:nth-child(3) {
    border-top-color: #ed8936;
}

.value-card:nth-child(4) {
    border-top-color: #f56565;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #718096;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.compliance-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.compliance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #48bb78 0%, #38b2ac 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.compliance-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.compliance-item p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.65) 0%, rgba(118, 75, 162, 0.65) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=2400&q=95&fit=crop&auto=format&sharp=10');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    filter: contrast(1.05) brightness(1.02);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: cta-pulse 6s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-section .btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: transparent;
    color: white;
}

/* Contact Page Specific - Professional Design */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-method-card:nth-child(1) {
    border-top-color: #667eea;
}

.contact-method-card:nth-child(1):hover {
    border-top-color: #667eea;
}

.contact-method-card:nth-child(2) {
    border-top-color: #48bb78;
}

.contact-method-card:nth-child(2):hover {
    border-top-color: #48bb78;
}

.contact-method-card:nth-child(3) {
    border-top-color: #ed8936;
}

.contact-method-card:nth-child(3):hover {
    border-top-color: #ed8936;
}

.method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.email-icon {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.phone-icon {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
}

.location-icon {
    background: rgba(237, 137, 54, 0.1);
    color: #ed8936;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1);
}

.contact-method-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-method-card p {
    color: #718096;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.method-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: #764ba2;
}

/* Professional Contact Form */
.contact-form-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-column {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.form-intro p {
    color: #718096;
    font-size: 1rem;
}

.professional-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Info Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.info-box p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: #4a5568;
    font-weight: 500;
}

.hours-row span:last-child {
    color: #667eea;
    font-weight: 600;
}

.emergency-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 4px solid #f56565;
}

.emergency-box h3 {
    color: #c53030;
}

.emergency-box p {
    color: #742a2a;
}

/* Professional FAQ */
.faq-professional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-professional-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid #667eea;
}

.faq-professional-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-professional-item:nth-child(even) {
    border-left-color: #48bb78;
}

.faq-professional-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-professional-item p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-side {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #718096;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
    margin-top: 1rem;
}

.btn-icon {
    font-size: 1.3rem;
}

/* Info Side */
.info-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #667eea;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-card:nth-child(2) {
    border-left-color: #48bb78;
}

.info-card:nth-child(3) {
    border-left-color: #f56565;
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-card p strong {
    color: #4a5568;
}

/* Social Links */
.social-links {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.social-icon:hover {
    background: white;
    color: #667eea;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-item:nth-child(even) {
    border-left-color: #48bb78;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 45px;
    color: #667eea;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #718096;
    line-height: 1.6;
}

/* Office Hours */
.office-hours {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hours-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 2rem;
}

.hours-list {
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2d3748;
}

.time {
    color: #667eea;
    font-weight: 600;
}

.hours-note {
    background: #fff5f5;
    border-left: 4px solid #f56565;
    padding: 1rem;
    border-radius: 8px;
    color: #c53030;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .two-column-layout,
    .story-content,
    .form-row,
    .faq-grid,
    .contact-form-wrapper,
    .contact-methods,
    .contact-form-section,
    .faq-professional,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-side,
    .form-container,
    .form-column {
        padding: 2rem 1.5rem;
    }
    
    .info-side,
    .info-column {
        order: -1;
    }
    
    .values-grid,
    .compliance-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .values-grid,
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid,
    .contact-methods {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }
    
    .contact-form-wrapper,
    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-side,
    .info-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-links {
        grid-column: 1 / -1;
    }
    
    .faq-professional {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    padding: 3rem 2rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal-content ul {
    color: #475569;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.cookie-table th {
    background: #1e293b;
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.cookie-table code {
    background: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #2563eb;
}
