:root {
    --primary-color: #3D8361;
    --bg-light: #f8faf9;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --border-color: #E0E0E0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 1.15rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section {
    background-color: var(--bg-light);
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-section .container {
    max-width: 1400px;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: #000000;
    line-height: 1.2;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.5rem;
    color: #2D3436;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    max-width: 1400px;
    letter-spacing: -0.01em;
    padding: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
        white-space: normal;
    }

    .hero-description {
        max-width: 90%;
        font-size: 1.15rem;
        line-height: 1.6;
    }
}

.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    background: white;
}

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

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
    padding: 0;
}

.navbar-brand .brand-name {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.navbar-brand .brand-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.9;
}

.navbar-nav {
    margin-right: 2rem;
}

.nav-account {
    display: flex;
    align-items: center;
}

.nav-account .btn-account {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-light);
    color: var(--text-primary);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border-color);
}

.nav-account .btn-account:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-account .btn-account i {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .navbar-brand .brand-name {
        font-size: 1.7rem;
    }
    
    .navbar-brand .brand-description {
        font-size: 0.7rem;
    }

    .nav-account {
        margin-top: 1rem;
    }

    .nav-account .btn-account {
        width: 100%;
        justify-content: center;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1.1rem 2.1rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.1rem;
}

.btn-outline {
    border: 1px solid var(--border-color);
    padding: 1.1rem 2.1rem;
    font-weight: 600;
    border-radius: 8px;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    background: white;
}

.hero-buttons {
    margin-bottom: 4rem;
}

.premium-indicators {
    margin-top: 4rem;
}

.premium-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.explanation-section {
    background-color: white;
    padding: 5rem 0;
    border-bottom: none;
}

.explanation-box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.explanation-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.explanation-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.explanation-example {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.explanation-example h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.price-box {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    max-width: 250px;
}

.price-box.regular {
    background: #FFF5F5;
}

.price-box.group-buy {
    background: #F0FFF4;
}

.price-box h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-box .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-box.regular .price {
    color: #FF4747;
}

.price-box.group-buy .price {
    color: var(--primary-color);
}

.price-box .period {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.premium-quality-section {
    background-color: white;
    position: relative;
    padding-top: 2rem;
}

.premium-quality-section .container {
    max-width: 1400px;
}

.premium-quality-section .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    margin-top: 1.5rem;
}

.premium-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
}

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

.quality-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(61, 131, 97, 0.1);
}

.quality-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quality-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.comparison-section {
    background-color: white;
    padding: 4rem 0;
}

.comparison-section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.card {
    border: none;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.card.before-card {
    background-color: #FFF5F5;
}

.card.after-card {
    background-color: #F0FFF4;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.before-card .card-title {
    color: #FF4747;
}

.after-card .card-title {
    color: var(--primary-color);
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.before-card ul li::before {
    content: '✕';
    color: #FF4747;
    font-weight: bold;
    min-width: 20px;
}

.after-card ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    min-width: 20px;
}

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

.features-section {
    padding: 4rem 0;
    background-color: white;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #4A4A4A;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.feature-card {
    background-color: #F8FAF9;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.feature-content p {
    font-size: 1rem;
    color: #4A4A4A;
    margin: 0;
    text-align: left;
}

.testimonials-section {
    background-color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.testimonials-section .subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-text {
        min-height: auto;
    }
}

.pricing-section {
    background-color: white;
    padding: 5rem 0;
    text-align: center;
}

.pricing-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-section .subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 0 auto 3rem;
    max-width: 600px;
    width: 100%;
}

.currency-selector select {
    border: 1px solid var(--border-color);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    min-width: 120px;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234A4A4A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat;
    background-position: calc(100% - 0.75rem) center;
    background-color: white;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    flex-wrap: nowrap;
}

.billing-text {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.billing-text .savings-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background: #dc3545;
    border-radius: 20px;
    color: white;
    font-weight: 600;
}

.form-switch {
    min-width: 3rem;
    padding: 0;
    margin: 0;
}

.form-switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
    margin: 0;
    cursor: pointer;
    background-color: var(--border-color);
    border: none;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    left: 0;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    margin: 0;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    z-index: 1;
    margin: 0;
    transform: scale(1.02);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: translateY(-5px) scale(1.02);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-amount {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-amount h4 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 2rem;
    font-weight: 600;
}

.pricing-amount p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.pricing-amount .savings {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
}

.pricing-card .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pricing-card .btn-primary:hover {
    background-color: #2c6147;
    border-color: #2c6147;
}

.individual-tools {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.individual-tools p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        max-width: 100%;
        margin: 0;
    }

    .pricing-card.popular {
        margin: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-section h2 {
        font-size: 2.5rem;
    }

    .pricing-controls {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .billing-toggle {
        width: 100%;
        justify-content: center;
    }

    .currency-selector {
        width: 100%;
    }

    .currency-selector select {
        width: 100%;
    }
}

.faq-section {
    background-color: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: white;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: white;
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.2s ease;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    background-color: white;
    line-height: 1.6;
}

.accordion-button:hover {
    background-color: var(--bg-light);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion-button i {
    font-size: 1.25rem;
    min-width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.accordion-button:not(.collapsed) i {
    transform: scale(1.1);
}

.telegram-section {
    background-color: white;
    padding: 5rem 0;
}

.telegram-box {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.telegram-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent, rgba(61, 131, 97, 0.1));
    border-radius: 0 24px 0 100%;
}

.btn-telegram {
    background-color: #229ED9;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-telegram:hover {
    background-color: #1C8ABF;
    color: white;
    transform: translateY(-2px);
}

.telegram-icon-box {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.telegram-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.telegram-icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.telegram-icon-box p {
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.footer-section {
    background-color: #1A1A1A;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-name {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-brand .brand-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
}

.footer-links a i {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
}

.copyright {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin: 0;
}

.secure-text {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin: 0;
}

.secure-text i {
    color: var(--primary-color);
}

.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.go-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: #2c6147;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .premium-title {
        font-size: 3.25rem;
        max-width: 800px;
    }
}

@media (max-width: 991px) {
    .telegram-box {
        padding: 2rem;
    }

    .col-lg-5 {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .premium-title {
        font-size: 2.5rem;
        white-space: normal;
        padding: 0 1rem;
        max-width: 100%;
    }
    .premium-quality-section {
        padding: 4rem 0;
    }
    .premium-indicators {
        margin-top: 3rem;
    }
    .premium-stat {
        margin-bottom: 1.5rem;
    }
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .premium-badge {
        padding: 2rem;
    }
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    .footer-bottom {
        text-align: center;
    }
    .secure-text {
        margin-top: 1rem;
        text-align: center;
    }
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .comparison-section h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    .card {
        margin-bottom: 1.5rem;
    }
    .card ul li {
        font-size: 1rem;
    }
}

/* Modal Styles */
.why-different-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.crown-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.crown-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.why-different-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.different-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.different-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.different-features li i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .why-different-card {
        padding: 2rem 1.5rem;
    }

    .why-different-card h3 {
        font-size: 1.5rem;
    }

    .different-features li {
        font-size: 1rem;
    }
}

/* Carousel Styles */
.carousel {
    position: relative;
    padding-bottom: 3rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -1.5rem;
}

.carousel-control-next {
    right: -1.5rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
}

.carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    opacity: 0.5;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    opacity: 1;
}

.carousel-inner {
    overflow: visible;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .carousel {
        padding-bottom: 2rem;
    }
}

.explanation-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.explanation-section h2 span {
    display: block;
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.75rem;
}

/* About Page Styles */
.about-hero-section {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6147 100%);
    opacity: 1;
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.about-hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.team-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* How It Works Page Styles */
.how-it-works-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6147 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.explanation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.explanation-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.savings-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.tool-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-comparison {
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
}

.regular-price, .our-price {
    margin: 1rem 0;
}

.regular-price {
    opacity: 0.7;
}

.regular-price .amount {
    text-decoration: line-through;
    color: #dc3545;
}

.our-price .amount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
}

.savings-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.security-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.security-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.explanation-steps {
    position: relative;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.explanation-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.2;
    z-index: 1;
}

.explanation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.explanation-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(61, 131, 97, 0.1);
    position: relative;
    z-index: 3;
}

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

.explanation-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .explanation-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .explanation-steps::before {
        display: none;
    }

    .explanation-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .explanation-card {
        padding: 1.5rem;
    }
    
    .explanation-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
} 