.page-header {
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-info {
    padding: 4rem 0;
    background: #fff;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.info-card:hover {
    background: #fff;
    border-color: #1B8CFB;
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
    transform: translateY(-10px);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.info-card p {
    color: #555;
    margin: 0.5rem 0;
}

.info-card a {
    color: #1B8CFB;
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-desc {
    color: #999 !important;
    font-size: 0.9rem;
    margin-top: 1rem !important;
}

.contact-form {
    padding: 4rem 0;
    background: #f8f9fa;
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 3rem;
    color: #666;
}

.message-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B8CFB;
    box-shadow: 0 0 0 3px rgba(27, 140, 251, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.form-actions .btn {
    min-width: 150px;
}

.form-message {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.quick-faq {
    padding: 4rem 0;
    background: #fff;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 3rem;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
    border-left: 4px solid #1B8CFB;
}

.faq-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(27, 140, 251, 0.2);
    transform: translateY(-5px);
}

.faq-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.faq-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-link {
    color: #1B8CFB;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.faq-link:hover {
    gap: 5px;
}

.commitment {
    padding: 4rem 0;
    background: #f8f9fa;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(27, 140, 251, 0.2);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.commitment-card h3 {
    color: #1B8CFB;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: #666;
    line-height: 1.6;
}

.partner-contact {
    padding: 4rem 0;
    background: #fff;
}

.partner-box {
    max-width: 800px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #1B8CFB 0%, #0a5fc9 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 10px;
}

.partner-box h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.partner-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.partner-details p {
    margin: 0.5rem 0;
}

.partner-details a {
    color: #fff;
    text-decoration: underline;
}

.partner-note {
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .message-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .partner-box {
        padding: 2rem 1.5rem;
    }
}