/* 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: #ffffff;
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #00ff41;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.8rem;
    color: #00ff41;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    color: #ffffff;
}

h4 {
    font-size: 1.2rem;
    color: #00ff41;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

a {
    color: #00ff41;
    text-decoration: none;
}

a:hover {
    color: #00d436;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

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

.logo {
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 80px 0;
    background: #222;
}

.content-block {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.about-intro .content-block {
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-text {
    font-style: italic;
    color: #888;
    background: #333;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #00ff41;
    text-align: center;
}

/* Footer */
.footer {
    background: #111;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #00ff41;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #00ff41;
}

.footer-section p {
    color: #cccccc;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* About Page Specific Styles */
.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
    background: #333;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.team-values {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-img {
        max-width: 250px;
        height: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .content-block {
        padding: 25px 15px;
    }
    
    .logo-container .brand-name {
        font-size: 1.3rem;
    }
    
    .about-img {
        max-width: 200px;
        height: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}