/* Page-specific styles */
.page-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="40" cy="40" r="6"/><circle cx="10" cy="10" r="3"/><circle cx="70" cy="70" r="4"/></g></svg>');
    animation: float 25s infinite linear;
}

.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: white;
    -webkit-text-fill-color: white;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    font-weight: 300;
}

/* About Page Styles */
.about-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.content-grid {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 5rem;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.content-section h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 700;
}

.content-section p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    color: #b8c5d1;
    font-size: 1.1rem;
}

.features-list {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid #667eea;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item h3 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    color: #b8c5d1;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 3rem;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item h3 {
    color: #667eea;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.future-plans {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.future-plans li {
    margin-bottom: 0.8rem;
    color: #b8c5d1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.contact-info {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-info h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-method {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border-left: 6px solid #667eea;
    transition: transform 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-method h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-method p {
    margin-bottom: 0.8rem;
    color: #b8c5d1;
    line-height: 1.6;
}

.contact-method a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.response-time {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.2), rgba(221, 107, 32, 0.2));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid #ed8936;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

.response-time h3 {
    color: #fbb040;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.response-time p {
    color: #e2a878;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-section {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-form-section h2 {
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8892b0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    background: rgba(26, 26, 46, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.3rem;
    transform: scale(1.2);
    accent-color: #667eea;
}

.checkbox-group label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: #b8c5d1;
}

/* FAQ Section */
.faq-section {
    margin-top: 8rem;
    padding: 4rem 3rem;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: #b8c5d1;
    line-height: 1.7;
}

.faq-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Legal Pages Styles */
.legal-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.legal-content .container {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 4rem;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.legal-section h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: left;
    font-weight: 700;
}

.legal-section h3 {
    color: #b8c5d1;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #b8c5d1;
    font-size: 1.1rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    color: #b8c5d1;
    line-height: 1.7;
}

.legal-highlight {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.2), rgba(221, 107, 32, 0.2));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid #ed8936;
    margin: 2.5rem 0;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

.legal-highlight p {
    margin: 0;
    color: #e2a878;
    font-weight: 500;
}

.effective-date {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    color: #b8c5d1;
    border: 1px solid rgba(102, 126, 234, 0.3);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0;
        border-radius: 0 0 30px 30px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .content-section h2,
    .legal-section h2,
    .contact-info h2,
    .contact-form-section h2 {
        font-size: 1.8rem;
    }

    .content-section,
    .legal-section,
    .contact-info,
    .contact-form-section {
        padding: 2.5rem;
        border-radius: 20px;
    }

    .faq-section {
        padding: 3rem 2.5rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0;
        border-radius: 0 0 20px 20px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .about-content,
    .contact-content,
    .legal-content {
        padding: 80px 0;
    }

    .content-section,
    .legal-section,
    .contact-info,
    .contact-form-section {
        padding: 2rem;
        border-radius: 16px;
    }

    .faq-section {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }

    .cta-section {
        padding: 3rem 2rem;
        border-radius: 16px;
    }

    .value-item {
        padding: 2rem;
        border-radius: 16px;
    }

    .faq-item {
        padding: 2rem;
        border-radius: 16px;
    }
}