.page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0;
}

.page-hero .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.page-hero .subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #FE00BF;
}

.page-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #16213e;
    margin: 30px 0 15px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #dee2e6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FE00BF;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #FE00BF;
    box-shadow: 0 5px 20px rgba(254, 0, 191, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FE00BF 0%, #ff6b6b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.team-section {
    margin: 40px 0;
}

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

.team-member {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.team-member:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: #FE00BF;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    margin-top: 0;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FE00BF;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #FE00BF 0%, #ff6b6b 100%);
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(254, 0, 191, 0.4);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #FE00BF;
}

.info-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FE00BF 0%, #ff6b6b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.info-card a {
    color: #FE00BF;
    text-decoration: none;
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.trust-badge-icon {
    font-size: 24px;
}

.trust-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.update-date {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 40px;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 20px;
    }

    .page-hero .title {
        font-size: 32px;
    }

    .page-hero .subtitle {
        font-size: 16px;
    }

    .page-content h2 {
        font-size: 24px;
    }

    .stats-section {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        justify-content: center;
    }
}
