/* Auxiliary Pages Specific Styles */

/* Page Header */
.page-header {
    background: #1a237e;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.brand-link:hover {
    opacity: 0.9;
}

.page-nav .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.page-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

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

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 60px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    margin-top: 40px;
}

.hero-showcase-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.page-hero h1 {
    color: #1a237e;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 24px;
    border-bottom: 3px solid #00695c;
    padding-bottom: 12px;
}

.content-section h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section h4 {
    color: #1a237e;
    font-size: 1.25rem;
    margin-bottom: 12px;
    margin-top: 24px;
}

.content-section p {
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.mission-image {
    order: 2;
}

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.mission-text {
    order: 1;
}

/* Story Section */
.story-showcase {
    margin: 40px 0;
    text-align: center;
}

.story-image {
    width: 100%;
    max-width: 1000px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Technology Section */
.technology-showcase {
    margin: 40px 0;
}

.tech-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-visual {
    order: 2;
}

.tech-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tech-description {
    order: 1;
}

/* Compliance Visual */
.compliance-visual {
    margin: 40px 0;
    text-align: center;
}

.compliance-detail-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Research Section */
.research-showcase {
    margin: 40px 0;
    text-align: center;
}

.research-image {
    width: 100%;
    max-width: 1000px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Manufacturing Section */
.manufacturing-showcase {
    margin: 40px 0;
    text-align: center;
}

.manufacturing-image {
    width: 100%;
    max-width: 1000px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.content-section ul, .content-section ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Highlight Boxes */
.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #00695c;
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 16px;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.important-notice h3 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 12px;
}

.important-notice p {
    color: #856404;
    margin-bottom: 0;
}

/* Grid Layouts */
.tech-grid, .values-grid, .usage-grid, .responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 32px 0;
}

.tech-item, .value-item, .usage-item, .responsibility-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.tech-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.tech-item h4, .value-item h4, .usage-item h4, .responsibility-item h4 {
    color: #1a237e;
    margin-bottom: 12px;
    margin-top: 0;
}

/* Collection Methods */
.collection-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.method-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #00695c;
}

.method-item h4 {
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Sharing Categories */
.sharing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.sharing-item {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 8px;
}

.sharing-item h4 {
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Compliance and Rights Lists */
.compliance-list, .rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.compliance-item, .right-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #00695c;
}

.compliance-item h4, .right-item h4 {
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Cookie Types */
.cookie-types {
    margin: 32px 0;
}

.cookie-type {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.cookie-type h3 {
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 16px;
    border-bottom: 2px solid #00695c;
    padding-bottom: 8px;
}

/* No Cookies List */
.no-cookies-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.no-cookie-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.no-cookie-item h4 {
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Browser Instructions */
.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.browser-item {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.browser-item h4 {
    color: #1a237e;
    margin-top: 0;
    margin-bottom: 8px;
}

.browser-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Impact List */
.impact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.impact-item {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
}

.impact-item h4 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 12px;
}

.impact-item p {
    color: #856404;
    margin-bottom: 0;
}

/* Contact Information */
.contact-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #00695c;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-showcase-image {
        height: 200px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .mission-content, .tech-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-image, .tech-visual {
        order: 1;
    }
    
    .content-image, .tech-detail-image {
        height: 250px;
    }
    
    .story-image, .compliance-detail-image, .research-image, .manufacturing-image {
        height: 250px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .tech-grid, .values-grid, .usage-grid, .responsibility-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-list, .rights-list {
        grid-template-columns: 1fr;
    }
    
    .browser-instructions {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .collection-methods, .sharing-categories {
        grid-template-columns: 1fr;
    }
    
    .no-cookies-list {
        grid-template-columns: 1fr;
    }
    
    .impact-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 20px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-showcase-image {
        height: 150px;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .content-section {
        margin-bottom: 40px;
    }
    
    .content-image, .tech-detail-image {
        height: 200px;
    }
    
    .story-image, .compliance-detail-image, .research-image, .manufacturing-image {
        height: 200px;
    }
}