/* Additional styles for auxiliary pages */

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #32cd32;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

.nav-link:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.5);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a3a 0%, #2a2a4a 50%, #1a1a3a 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(50, 205, 50, 0.1) 0%, transparent 50%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    position: relative;
    z-index: 2;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: #0a0a1a;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 2rem;
    color: #32cd32;
    margin-bottom: 25px;
    font-weight: 600;
}

.content-block p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

/* Features Grid for About page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    background: #1a1a3a;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(50, 205, 50, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.3);
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.1);
}

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

.feature-item h3 {
    font-size: 1.3rem;
    color: #32cd32;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

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

.policy-section {
    background: #1a1a3a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(50, 205, 50, 0.1);
    margin-bottom: 25px;
}

.policy-section h2 {
    color: #32cd32;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-section h3 {
    color: #32cd32;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.policy-section p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

.policy-list {
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
}

.policy-list li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #32cd32;
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-info-block {
    background: #151530;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(50, 205, 50, 0.2);
    margin-top: 15px;
}

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

.contact-info-block a {
    color: #32cd32;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-block a:hover {
    color: #28a428;
    text-decoration: underline;
}

/* About page specific styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-hero.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-hero.reverse .about-image {
    order: -1;
}

.about-text h2 {
    color: #32cd32;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image .image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    text-align: center;
}

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

.value-item {
    background: #1a1a3a;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(50, 205, 50, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.3);
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.1);
}

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

.value-item h3 {
    color: #32cd32;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Pages */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-hero.reverse .about-image {
        order: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-header {
        padding: 50px 0 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-content {
        padding: 50px 0;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }

    .policy-section {
        padding: 25px 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .about-image .image-placeholder {
        height: 250px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 20px 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .contact-info-block {
        padding: 20px;
    }
    
    .about-image .image-placeholder {
        height: 200px;
    }
    
    .value-item {
        padding: 25px 15px;
    }
}