/* Auxiliary Pages Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section a {
    text-decoration: none;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.brand-name a {
    color: #4682B4;
    text-decoration: none;
}

.brand-name a:hover {
    color: #3a6b96;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 4rem 0;
    background: white;
}

.page-title {
    font-size: 2.5rem;
    color: #4682B4;
    margin-bottom: 2rem;
    text-align: center;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.content-block h2 {
    color: #4682B4;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #8B4513;
}

.content-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
}

/* About Us Specific Styles */
.content-block.centered {
    text-align: center;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-text {
    flex: 1;
    text-align: left;
}

.mission-image {
    flex: 0 0 300px;
}

.mission-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.services-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.service-visual {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
}

.service-description {
    flex: 1;
    text-align: left;
}

.expertise-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.expertise-image {
    flex: 0 0 300px;
}

.expertise-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.expertise-text {
    flex: 1;
    text-align: left;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    text-align: center;
    padding: 1.5rem;
}

.approach-item h4 {
    color: #4682B4;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.approach-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.placeholder-text {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-nav a[href*="about"] {
    color: #4682B4;
    font-weight: 600;
}

.footer-nav a[href*="privacy"] {
    color: #4682B4;
    font-weight: 600;
}

.footer-nav a[href*="terms"] {
    color: #4682B4;
    font-weight: 600;
}

.footer-nav a[href*="cookies"] {
    color: #4682B4;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-block {
        padding: 0 15px;
    }
    
    .mission-content,
    .services-showcase,
    .expertise-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mission-image,
    .service-visual,
    .expertise-image {
        flex: none;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.4rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}