/* Auxiliary pages styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #E5E5E5;
    background-color: #2C3E50;
    font-weight: 400;
}

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

/* Header */
.header {
    background-color: #1A252F;
    padding: 20px 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E5E5E5;
    text-decoration: none;
}

.logo {
    flex-shrink: 0;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #BDC3C7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #4ECDC4;
}

/* Main content */
.main {
    min-height: calc(100vh - 200px);
}

.page-hero {
    background-color: #34495E;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #E5E5E5;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: #BDC3C7;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.content-block h2 {
    color: #4ECDC4;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-block p {
    color: #BDC3C7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* About page specific styles */
.content-with-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.expertise-item {
    text-align: center;
    padding: 25px;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.expertise-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.expertise-item h3 {
    color: #E5E5E5;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.expertise-item p {
    color: #BDC3C7;
    font-size: 0.9rem;
    margin: 0;
}

.innovation-features {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.innovation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.innovation-icon {
    flex-shrink: 0;
}

.innovation-item span {
    color: #BDC3C7;
    font-weight: 500;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .content-with-visual {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .innovation-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Footer */
.footer {
    background-color: #1A252F;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-brand .brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E5E5E5;
}

.footer-brand p {
    color: #95A5A6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ECDC4;
}

.footer-column h4 {
    color: #4ECDC4;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #BDC3C7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4ECDC4;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        gap: 20px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-block {
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}