/* Auxiliary Pages Specific Styles */

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f4e8 100%);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #5a6b5a;
    margin-bottom: 10px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 14px;
    color: #7a8a7a;
    font-style: italic;
}

/* Logo Section Link Styles */
.logo-section a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-section a:hover .brand-name {
    color: #4a7c59;
    transition: color 0.3s ease;
}

/* Content Section Styles */
.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: #f8faf8;
}

/* Content Grid for About Page */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text p {
    font-size: 16px;
    color: #5a6b5a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .content-main-image {
        height: 280px;
    }
}

/* Mission Section Styles */
.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    text-align: center;
    margin-bottom: 50px;
}

.large-text {
    font-size: 22px;
    color: #2c5530;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

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

.mission-point {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e8f4e8;
}

.mission-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.mission-point h3 {
    font-size: 20px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-point p {
    color: #5a6b5a;
    line-height: 1.5;
    margin: 0;
}

/* Approach Grid Styles */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.approach-item {
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
    background-color: #fff;
}

.approach-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.approach-item h3 {
    font-size: 18px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.approach-item p {
    color: #5a6b5a;
    line-height: 1.5;
    margin: 0;
}

/* Values Detailed Styles */
.values-detailed {
    max-width: 800px;
    margin: 0 auto;
}

.value-detailed {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e8f4e8;
}

.value-icon-large {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 22px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-content p {
    color: #5a6b5a;
    line-height: 1.6;
    margin: 0;
}

/* Policy Content Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 28px;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e8f4e8;
    padding-bottom: 10px;
}

.policy-section h3 {
    font-size: 22px;
    color: #4a7c59;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.policy-section h4 {
    font-size: 18px;
    color: #2c5530;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
}

.policy-section p {
    font-size: 16px;
    color: #5a6b5a;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    font-size: 16px;
    color: #5a6b5a;
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-section a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Info Styles */
.contact-info {
    background-color: #f8faf8;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Cookie Duration Table */
.cookie-duration-table {
    background-color: #f8faf8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.cookie-duration-table h4 {
    margin-bottom: 15px;
    color: #2c5530;
}

.cookie-duration-table ul {
    margin-bottom: 0;
}

/* Footer Links Styles */
.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .value-detailed {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .large-text {
        font-size: 20px;
    }
    
    .mission-point,
    .approach-item,
    .value-detailed {
        padding: 20px 15px;
    }
    
    .policy-section {
        margin-bottom: 30px;
    }
    
    .contact-info {
        padding: 20px;
    }
}