/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    background-color: #4a5568;
    padding: 8px;
    border-radius: 4px;
    display: block;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #6b46c1;
    border-bottom: 2px solid #6b46c1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #6b46c1;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #6b46c1;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #553c9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Content Sections */
.intro-section,
.content-section {
    background-color: #fff;
    padding: 4rem 0;
}

.page-header {
    background-color: #6b46c1;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content-section h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    color: #6b46c1;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.content-list {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.content-list li {
    margin-bottom: 0.5rem;
}

.content-list.numbered {
    list-style: decimal;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-lead {
    font-size: 1.3rem;
    color: #6b46c1;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Info Boxes */
.info-box {
    background-color: #ede9fe;
    border-left: 4px solid #6b46c1;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box.highlight {
    background-color: #fef3c7;
    border-left-color: #f59e0b;
}

.info-box p {
    margin: 0;
}

.compliance-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #6b46c1;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.compliance-icon {
    font-size: 2rem;
}

.compliance-header h3 {
    color: #2d3748;
    margin: 0;
    font-size: 1.75rem;
}

.compliance-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.compliance-list {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.compliance-list li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.transparency-box {
    background-color: #ede9fe;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 4px solid #6b46c1;
}

.transparency-box h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.transparency-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.features-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

.process-section {
    background-color: #fff;
    padding: 4rem 0;
}

.process-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.expectations-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.expectations-section h2 {
    text-align: center;
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expectation-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #6b46c1;
}

.expectation-item h3 {
    color: #6b46c1;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.cta-section {
    background-color: #2d3748;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section-inline {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.cta-section-inline h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-card,
.contact-form-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #6b46c1;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #6b46c1;
    text-decoration: none;
}

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

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

/* Forms */
.contact-form {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b46c1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #2d3748;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #a78bfa;
}

.footer-payment-badges {
    text-align: center;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.payment-badge-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    display: inline-block;
    background-color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.payment-badge-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-compliance {
    background-color: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.footer-compliance p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .logo {
        height: 40px;
        padding: 6px;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .intro-section,
    .content-section {
        padding: 2.5rem 0;
    }

    .compliance-highlight {
        padding: 1.5rem;
    }

    .compliance-header h3 {
        font-size: 1.5rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}