/* Auxiliary Pages Styles */

/* Centered Content for About Page */
.centered-content {
    text-align: center;
}

.centered-content h2 {
    text-align: center;
}

.page-header {
    background: linear-gradient(135deg, #0066FF 0%, #2a2a2a 50%, #0066FF 100%);
    color: white;
    padding: 60px 0;
    position: relative;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.back-link {
    color: #32FF32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: #00FF00;
}

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

.page-header .brand-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #32FF32;
    letter-spacing: -0.5px;
}

.page-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

/* About Page Specific */
.about-section,
.mission-section,
.technical-section {
    margin-bottom: 60px;
}

.about-section h2,
.mission-section h2,
.technical-section h2 {
    color: #0066FF;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-section p,
.mission-section p,
.technical-section p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.mission-point {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mission-point:hover {
    border-color: #32FF32;
    transform: translateY(-3px);
}

.mission-point h3 {
    color: #0066FF;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-point p {
    color: #666;
    margin-bottom: 0;
}

/* About Page Content with Images */
.about-content-with-image,
.mission-content-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

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

.about-text,
.mission-text {
    text-align: left;
}

/* Innovation Section */
.innovation-section {
    margin-bottom: 60px;
}

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

.innovation-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.innovation-item:hover {
    border-color: #32FF32;
    transform: translateY(-5px);
}

.innovation-icon {
    margin-bottom: 20px;
}

.innovation-item h3 {
    color: #0066FF;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.innovation-item p {
    color: #666;
    line-height: 1.6;
}

/* Mission Points with Icons */
.mission-point {
    position: relative;
    padding-top: 20px;
}

.mission-icon {
    margin-bottom: 15px;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item:hover {
    border-color: #32FF32;
    transform: translateY(-3px);
}

.tech-icon {
    margin-bottom: 20px;
}

.tech-item h3 {
    color: #0066FF;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-item p {
    color: #666;
    line-height: 1.6;
}

.tech-specs {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.tech-specs li {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.tech-specs li:before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #32FF32;
    font-size: 1.2em;
}

.tech-specs strong {
    color: #0066FF;
    font-weight: 600;
}

/* Legal Document Styles */
.legal-document {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #0066FF;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    color: #2a2a2a;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.legal-section p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-section a {
    color: #0066FF;
    text-decoration: none;
}

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

.legal-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #32FF32;
    text-align: center;
}

.legal-footer p {
    color: #2a2a2a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background: #0066FF;
    color: white;
    font-weight: 600;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #32FF32;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.footer-brand-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #32FF32;
}

.footer-description {
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-links a:hover {
    color: #32FF32;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    color: #ccc;
    margin: 0;
    font-size: 0.95em;
}

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

.footer-bottom p {
    color: #999;
    margin: 0;
    font-size: 0.9em;
}

.placeholder-text {
    color: #666;
    font-size: 1.2em;
    line-height: 1.7;
    font-style: italic;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #ddd;
}

/* Responsive for Pages */
@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 40px 30px;
    }
    
    .tech-specs {
        padding: 20px;
    }
    
    .about-content-with-image,
    .mission-content-with-image {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text,
    .mission-text {
        text-align: center;
    }
    
    .innovation-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        padding: 30px 20px;
    }
    
    .cookies-table {
        font-size: 0.9em;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .page-header .brand-name {
        font-size: 1.2em;
    }
    
    .page-title {
        font-size: 1.8em;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-document {
        padding: 20px 15px;
    }
    
    .legal-section h2 {
        font-size: 1.5em;
    }
    
    .legal-section h3 {
        font-size: 1.2em;
    }
}