/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #344c4c;
    background-color: #f8f9fa;
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/backgrounds/bg-pattern1.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    font-size: 28px;
    margin: 30px 0;
    font-weight: 700;
    color: #303c42;
}

.subtitle {
    text-align: center;
    color: #6c7a89;
    margin-bottom: 20px;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 25px;
    border: 1px solid #344c4c;
    background: transparent;
    color: #344c4c;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
}

.btn:hover {
    background-color: #344c4c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.primary-btn {
    background-color: #f7a049;
    border-color: #f7a049;
    color: white;
}

.primary-btn:hover {
    background-color: #e78f3a;
    border-color: #e78f3a;
}

/* Header */
header {
    background-color: rgb(255 255 255 / 51%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo a {
    font-size: 48px;
}

.desktop-nav {
    display: block;
}

.desktop-nav ul {
    display: flex;
}

.desktop-nav ul li {
    padding: 0 18px;
}

.desktop-nav ul li a {
    white-space: nowrap;
}

.desktop-nav ul li a {
    color: #344c4c;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav ul li a:hover {
    color: #f7a049;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #f7a049;
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #344c4c;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 80px 20px 40px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    display: none;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav ul li {
    margin: 15px 0;
}

.mobile-nav ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #344c4c;
    padding: 10px;
    display: block;
    text-align: center;
}

.mobile-nav ul li a.mobile-login {
    color: #f7a049;
    font-weight: 700;
}

/* Media Query for Mobile Menu */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .login-btn {
        display: none;
    }

    .logo a {
        font-size: 36px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #f7a049, #e78f3a);
    min-height: 100vh;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 160, 73, 0.8) 0%, rgba(231, 143, 58, 0.75) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: url('assets/images/backgrounds/bg-waves.svg');
    background-size: cover;
    background-position: top;
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    margin-top: -300px;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 20px 0;
    cursor: pointer;
    transition: all 0.3s;
}
.hero-buttons .first-btn {
    background-color: black;
    color: white;
    font-weight: bold;
    margin-right: 50px;
}
.hero-buttons .second-btn {
    background-color: #D43642;
    color: white;
    font-weight: bold;
}

.hero-buttons .first-btn:hover {
    background-color: #F3F4F6;
    color: #373737;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .second-btn:hover {
    background-color: #FF5E6A;
    color: #373737;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.free-trial {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.timer-box {
    background: linear-gradient(135deg, #3da0c9, #2980b9);
    color: white;
    padding: 30px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.timer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/backgrounds/bg-dots.svg');
    background-size: 200px;
    opacity: 0.1;
    z-index: -1;
}

.timer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.timer-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.timer {
    font-size: 36px;
    font-weight: bold;
    margin: 15px 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timer-box .btn {
    background-color: #fff;
    color: #3da0c9;
    border: none;
    font-weight: 700;
    padding: 12px 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timer-box .btn:hover {
    background-color: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        flex-direction: row;
        gap: 15px;
    }

    .stat-number {
        font-size: 28px;
        margin-bottom: 0;
    }

    .timer-box {
        width: 90%;
        max-width: 320px;
        padding: 20px;
    }

    .timer {
        font-size: 28px;
    }
}

/* Features Section */
.why-use {
    padding: 80px 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.why-use::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/backgrounds/bg-pattern2.svg');
    background-size: 1000px;
    opacity: 0.03;
    z-index: 0;
}

.why-use .container {
    position: relative;
    z-index: 1;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0 20px;
}

.feature {
    flex: 0 0 48%;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #f7a049, #e78f3a);
    border-radius: 4px 0 0 4px;
}

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

.feature img {
    max-width: 80px;
    margin-right: 25px;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #344c4c;
}

.feature-text p {
    color: #6c7a89;
    font-size: 15px;
    line-height: 1.7;
}

.security-icon {
    width: 80px;
    height: 80px;
    background-color: #344c4c;
    border-radius: 50%;
    margin-right: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.security-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background-color: #fff;
    mask: url('assets/images/shield.svg') no-repeat center center;
    -webkit-mask: url('assets/images/shield.svg') no-repeat center center;
    mask-size: cover;
    -webkit-mask-size: cover;
}

/* Download Section */
.download {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 240, 245, 0.7) 0%, rgba(230, 240, 250, 0.7) 100%);
    z-index: 0;
}

.download::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/backgrounds/bg-dots.svg');
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.download .container {
    position: relative;
    z-index: 1;
}

.download-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    flex: 0 0 calc(25% - 30px);
    max-width: 280px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3da0c9, #2980b9);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    padding: 15px;
}

.platform-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.download-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #344c4c;
}

.instruction-list {
    text-align: left;
    margin-bottom: 25px;
    min-height: 120px;
}

.instruction-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #6c7a89;
    font-size: 14px;
}

.instruction-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3da0c9;
    font-weight: bold;
}

.download-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #3da0c9;
    color: white;
    border: none;
}

.download-btn:hover {
    background-color: #2980b9;
    color: white;
}

@media (max-width: 1200px) {
    .download-card {
        flex: 0 0 calc(50% - 30px);
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .features {
        justify-content: center;
    }

    .feature {
        flex: 0 0 100%;
        max-width: 500px;
    }

    .download-card {
        flex: 0 0 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }

    .instruction-list {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature img, .security-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .download-card {
        padding: 20px 15px;
    }
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(250, 250, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 0;
}

.plans::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.02));
    pointer-events: none;
}

.plans .container {
    position: relative;
    z-index: 1;
}

.pricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 50px 0 30px;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    flex: 0 0 280px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e9ecef;
    color: #6c7a89;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #e9ecef, #dee2e6);
    z-index: 1;
}

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

.price-card.featured {
    border: none;
    transform: scale(1.05);
    z-index: 2;
}

.price-card.featured .price-tag {
    background-color: #f7a049;
    color: white;
}

.price-card.featured::before {
    background: linear-gradient(to right, #f7a049, #e78f3a);
}

.price-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #f7a049;
    transform: rotate(45deg) translateY(-20px);
    z-index: -1;
}

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

.price-card h3 {
    font-size: 22px;
    color: #344c4c;
    font-weight: 700;
    margin-top: 10px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0 5px;
    color: #f7a049;
    position: relative;
    display: inline-block;
}

.price-unit {
    color: #6c7a89;
    margin-bottom: 15px;
    font-size: 16px;
}

.price-description {
    color: #6c7a89;
    font-size: 15px;
    margin-bottom: 30px;
    min-height: 40px;
    line-height: 1.5;
    padding: 0 10px;
}

.price-card .btn {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 236, 239, 0.9) 100%);
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('assets/images/backgrounds/bg-pattern1.svg');
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
}

.review {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    margin: 15px;
    flex: 0 0 45%;
    max-width: 500px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #3da0c9, #2980b9);
    border-radius: 3px 0 0 3px;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-content {
    margin-bottom: 25px;
    position: relative;
    padding-top: 10px;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    color: rgba(247, 160, 73, 0.15);
    font-family: serif;
}

.review-content p {
    color: #344c4c;
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.user {
    font-size: 15px;
    color: #6c7a89;
    font-weight: 500;
    margin-bottom: 5px;
}

.stars {
    color: #f7a049;
    letter-spacing: 2px;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(240, 245, 250, 0.9) 100%);
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #e78f3a;
}

.faq-item.active {
    border-left-color: #f7a049;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin: 0;
    padding: 20px;
    font-size: 17px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    color: #344c4c;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h3::after {
    content: '+';
    font-size: 20px;
    color: #f7a049;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-content {
    padding: 0 20px 20px;
    color: #6c7a89;
    font-size: 15px;
    line-height: 1.7;
    display: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: -5px;
    margin: 0 20px;
    padding: 15px 0 20px;
}

.faq-item.active .faq-content {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item.active h3 {
    color: #f7a049;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing {
        gap: 15px;
    }

    .price-card {
        flex: 0 0 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

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

    .price-card.featured:hover {
        transform: translateY(-10px);
    }

    .review {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }

    .faq-item h3 {
        font-size: 16px;
        padding: 15px;
    }
}

/* Global Section */
.global {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    z-index: 0;
}

.global .container {
    position: relative;
    z-index: 1;
}

.global-description {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #6c7a89;
    font-size: 16px;
    line-height: 1.7;
}

.flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(248, 249, 250, 0.5);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: inline-flex;
}

.flags img {
    height: 35px;
    margin: 0 20px;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.flags img:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: #344c4c;
    color: white;
    padding: 50px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #f7a049, #52b2d8);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.footer-links {
    display: flex;
}

.footer-links a {
    margin: 0 20px;
    color: #fff;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #f7a049;
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.social {
    display: flex;
    margin: 20px 0;
}

.social a {
    margin: 0 15px;
    transition: all 0.3s;
}

.social a:hover {
    transform: translateY(-5px);
}

.social img {
    height: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.social a:hover img {
    opacity: 1;
}

.copyright {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-links a {
        margin: 10px 0;
    }

    .flags {
        padding: 15px;
    }

    .flags img {
        height: 25px;
        margin: 0 10px;
    }
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #3da0c9, #2980b9);
    color: white;
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.popup-close:hover {
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.1);
}

.popup-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.popup-content p {
    margin-bottom: 20px;
}

.timer-counter {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-content .btn {
    width: 80%;
    margin: 0 auto;
    padding: 15px;
    font-size: 18px;
    background-color: #fff;
    color: #3da0c9;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(260deg, #228095, #e98736);
    color: white;
    border-radius: 8px;
    padding: 15px 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
    min-width: 120px;
}

.popup-button-arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFC200;
    margin-left: 10px;
    transform: rotate(90deg);
    padding-bottom: 5px;
}

.popup-button-text{
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}
.popup-button-text .title{
    font-size: 24px;
    color: white;
    position: relative;
    font-weight: 600;
}

.popup-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-button-timer {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.popup-button span {
    font-size: 16px;
    font-weight: 500;
}

/* Running days counter */
.stat-number-decimal {
    font-size: 24px;
    font-weight: 500;
    vertical-align: top;
    margin-left: 2px;
}

#runningSecondsCounter {
    display: inline-block;
    min-width: 28px;
    font-size: 20px;
}

/* Enhanced Feature Section */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
}

.security-wrapper {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.feature-details {
    display: flex;
    margin-top: 15px;
    gap: 20px;
}

.feature-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 80px;
}

.detail-value {
    font-size: 18px;
    font-weight: 700;
    color: #f7a049;
}

.detail-label {
    font-size: 12px;
    color: #6c7a89;
    margin-top: 5px;
}

.testimonial-mini {
    text-align: center;
    margin: 50px auto 0;
    max-width: 800px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-mini::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: rgba(247, 160, 73, 0.15);
    font-family: serif;
}

.testimonial-mini::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 60px;
    color: rgba(247, 160, 73, 0.15);
    font-family: serif;
}

.testimonial-mini-quote {
    font-size: 20px;
    font-style: italic;
    color: #344c4c;
    margin-bottom: 15px;
}

.testimonial-mini-author {
    font-size: 16px;
    color: #6c7a89;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #f7a049;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #e78f3a;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
    }

    .timer-counter {
        font-size: 36px;
    }

    .feature-details {
        flex-wrap: wrap;
        gap: 10px;
    }

    .feature-detail-item {
        flex: 0 0 calc(50% - 5px);
        min-width: 0;
    }

    .testimonial-mini {
        margin-top: 30px;
        padding: 20px;
    }

    .testimonial-mini-quote {
        font-size: 16px;
    }

    .popup-button {
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .feature-details {
        justify-content: center;
    }
}

/* Why Use Pop-up Styles */
.why-use-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2010;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.why-use-popup.show {
    opacity: 1;
    visibility: visible;
}

.why-use-popup-content {
    background: linear-gradient(135deg, #3da0c9, #2980b9);
    color: white;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.why-use-popup.show .why-use-popup-content {
    transform: translateY(0);
}

.why-use-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.why-use-popup-close:hover {
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.3);
}

.why-use-prompt {
    position: absolute;
    top: -40px;
    right: 30px;
    background-color: #f7a049;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 15;
}

.why-use-prompt::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('assets/images/arrow-up.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(45deg);
}

.why-use-prompt::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f7a049;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature {
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.feature-popup-trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #3da0c9;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.feature-popup-trigger:hover {
    background-color: #f7a049;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(61, 160, 201, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(61, 160, 201, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(61, 160, 201, 0);
    }
}
