:root {
    --primary-color: #004d28;
    --secondary-color: #2d1b4b;
    --light-color: #ffffff;
    --accent-color: #f0e6d2;
    --gradient-start: #ffffff;
    --gradient-end: #e2e6ff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

.hero-section {
    background: linear-gradient(135deg, var(--light-color), #e2e6ff);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(226,230,255,0.2));
    z-index: 1;
}

.logo {
    max-width: 150px;
}

.nav-btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn {
    background: linear-gradient(135deg, var(--accent-color), #e6d9bc);
    color: var(--secondary-color);
    border: none;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.signup-btn {
    background: linear-gradient(135deg, var(--primary-color), #006634);
    color: white;
    border: none;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.app-screenshot {
    max-width: 100%;
    height: auto;
}

.features-section {
    padding: 80px 0;
}

.section-title {
    color: #2d1b4b;
    font-weight: 700;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d1b4b;
}

.rating-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

.rating-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #2d1b4b;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.avatar-group img:hover {
    transform: translateY(-3px);
}

.cta-btn {
    background-color: #f0e6d2;
    color: #333;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: 500;
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-img {
    max-width: 100%;
    border-radius: 20px;
}

/* Trust Section Styles */
.trust-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 100px 0;
    position: relative;
}

.feature-box {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease-in-out;
}

.feature-box:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-icon-square {
    width: 40px;
    height: 40px;
    background-color: #e8e9f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d1b4b;
    font-size: 1.2rem;
}

.feature-btn {
    display: inline-block;
    background-color: #f0e6d2;
    color: #333;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background-color: #e6d9bc;
}

.app-interface-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-row {
    margin-top: 60px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stats-text {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion-button {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px !important;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--secondary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d1b4b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    line-height: 1.8;
}