:root {
    --primary-color: #ff4500; /* Orange-rouge */
    --secondary-color: #ff8c00; /* Orange */
    --accent-color: #00875a;
    --text-color: #172b4d;
    --background-color: #ffffff;
    --gradient: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    /* Suppression du motif de fond */
    --background-size: initial;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--gradient);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    color: white;
}

.logo-svg {
    width: 160px;
    height: 40px;
}

.logo-text {
    fill: white;
    font-size: 22px;
    font-weight: bold;
}

.menu-btn, .register-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
}

.menu-btn svg {
    fill: white;
}

.register-btn {
    background: white;
    color: var(--primary-color);
    border-radius: 24px;
    font-weight: 600;
    transition: transform 0.2s;
}

.register-btn:hover {
    transform: scale(1.05);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient);
    color: white;
}

.hero-content {
    position: relative;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
}

.key-points {
    list-style: none;
    margin-bottom: 2rem;
}

.key-points li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.key-points li::before {
    content: "✓";
    color: white;
    font-weight: bold;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 24px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cashback-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: rotate(15deg);
}

.badge-inner {
    text-align: center;
    line-height: 1.2;
}

.percentage {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.benefits {
    padding: 4rem 2rem;
    background: #f4f5f7;
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card.blue-bg {
    background: var(--gradient);
    color: white;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.benefit-card.blue-bg .benefit-icon {
    fill: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    color: #637381;
    margin: 0;
}

.benefit-card.blue-bg p {
    color: rgba(255,255,255,0.9);
}

.cashback-badge-small {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--gradient);
    padding: 2rem;
}

.bank-interface-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    transition: left 0.3s var(--animation-easing);
    z-index: 99;
    padding: 2rem;
}

.menu-overlay.show {
    left: 0;
}

.menu-list {
    list-style: none;
    margin-top: 2rem;
}

.menu-list li {
    margin-bottom: 1rem;
}

.menu-list a {
    display: block;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    border-radius: 8px;
}

.menu-list a:hover {
    background-color: #f4f5f7;
    color: var(--primary-color);
}

.services {
    padding: 4rem 2rem;
    background: white;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-card.blue-bg {
    background: var(--gradient);
    color: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    fill: var(--primary-color);
}

.service-card.blue-bg .service-icon {
    fill: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #637381;
    margin: 0;
    line-height: 1.6;
}

.service-card.blue-bg p {
    color: rgba(255,255,255,0.9);
}

.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f4f5f7 0%, #ffffff 100%);
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #637381;
    line-height: 1.6;
    margin: 0;
}

/* Footer Styles */
footer {
    background: #2D3436;  
    color: #F5F6FA;       
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #F5F6FA;       
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #BDC3C7;      
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F5F6FA;      
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: #F5F6FA;       
}

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

.footer-bottom p {
    color: #BDC3C7;      
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-links a {
    color: #BDC3C7;      
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #F5F6FA;      
}

/* Registration Page Styles */
.register-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.register-header p {
    color: #637381;
    font-size: 1.1rem;
    line-height: 1.6;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,82,204,0.1);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.password-toggle svg {
    width: 24px;
    height: 24px;
    fill: #637381;
}

.register-form button[type="submit"].register-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: block;
}

.register-form button[type="submit"].register-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.terms-group {
    margin: 1.5rem 0;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #637381;
    font-size: 0.9rem;
}

.terms-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.terms-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-label a:hover {
    text-decoration: underline;
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    color: #637381;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.coordinates-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.coordinates-header {
    text-align: center;
    margin-bottom: 2rem;
}

.coordinates-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.coordinates-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.phone-row {
    grid-template-columns: 100px 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,82,204,0.1);
}

.continue-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.continue-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.kyc-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.kyc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.kyc-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.kyc-header p {
    color: #637381;
    font-size: 1.1rem;
    line-height: 1.6;
}

.kyc-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.kyc-section h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.instruction-text {
    color: #637381;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.warning-text {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.document-upload {
    margin-bottom: 2rem;
}

.upload-group h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.upload-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.upload-side {
    text-align: center;
}

.upload-btn {
    width: 100%;
    padding: 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-btn:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
}

.camera-icon {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
}

.preview {
    margin-top: 1rem;
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #637381;
}

.selfie-upload {
    max-width: 400px;
    margin: 0 auto;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    header {
        justify-content: center;
        position: relative;
    }

    .menu-btn {
        position: absolute;
        left: 1rem;
    }
    
    .logo {
        margin: 0 auto;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .key-points {
        display: inline-block;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: 2;
        justify-content: center;
    }
    
    .cashback-badge {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    
    .bank-interface-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .benefits-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .register-btn {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-column {
        padding-bottom: 1rem;
    }

    .social-icons {
        justify-content: center;
        gap: 1.5rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .register-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

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

@media (max-width: 768px) {
    .coordinates-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-row {
        grid-template-columns: 80px 1fr;
    }
}

@media (max-width: 768px) {
    .kyc-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

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

    .upload-sides {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .upload-btn {
        padding: 1.5rem;
    }
}

.about-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-content p {
    margin-bottom: 1.5rem;
    color: #637381;
    line-height: 1.8;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-illustration {
    width: 100%;
    max-width: 400px;
}

.about-commitments {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.about-commitments h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    fill: var(--primary-color);
}

.commitment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.commitment-card p {
    color: #637381;
    line-height: 1.6;
}

.about-team {
    padding: 4rem 2rem;
}

.about-team h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-highlights {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.about-highlights h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    fill: white;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.highlight-item p {
    opacity: 0.9;
}

.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta p {
    color: #637381;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        order: -1;
    }

    .commitment-card,
    .team-member,
    .highlight-item {
        padding: 1.5rem;
    }

    .about-cta h2 {
        font-size: 1.75rem;
    }
}



.accounts-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.accounts-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accounts-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.account-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.account-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.account-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-tag {
    position: absolute;
    top: -12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.account-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.account-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.account-features {
    margin: 1.5rem 0;
    width: 100%;
}

.account-features ul {
    list-style: none;
    padding: 0;
}

.account-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.account-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.account-price {
    margin: 1.5rem 0;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.period {
    color: var(--gray);
    font-size: 1rem;
}

.account-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
}

.account-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.account-btn.featured {
    background: var(--accent-color);
}

.account-btn.premium {
    background: linear-gradient(135deg, #b4a537, #ffdb4d);
}

.accounts-comparison {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.accounts-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .accounts-hero h1 {
        font-size: 2rem;
    }

    .accounts-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .account-card.featured {
        transform: scale(1);
    }

    .account-card.featured:hover {
        transform: translateY(-5px);
    }
}