:root {
    --green: #007749;
    --yellow: #FFB81C;
    --red: #DE3831;
    --blue: #002395;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray);
    color: var(--dark-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1001;
}

.logo-icon {
    background: var(--yellow);
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

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

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

.cta-button {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 39, 149, 0.85), rgba(0, 119, 73, 0.85)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3') center/cover;
    color: var(--white);
    padding: 6rem 5% 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--blue);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 5px;
    background: var(--yellow);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Benefits Overview Section */
.benefits-overview {
    padding: 6rem 5%;
    background: var(--white);
}

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

.benefit-card {
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 5px solid var(--green);
}

.benefit-card:nth-child(2) {
    border-top-color: var(--blue);
}

.benefit-card:nth-child(3) {
    border-top-color: var(--yellow);
}

.benefit-card:nth-child(4) {
    border-top-color: var(--red);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    background: var(--blue);
    color: var(--white);
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 1.5rem;
}

.benefit-content {
    padding: 0 2rem 2.5rem;
    text-align: center;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blue);
}

/* Detailed Benefits Section */
.detailed-benefits {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: var(--white);
}

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

.detailed-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detailed-benefit-card:hover {
    transform: scale(1.05);
}

.detailed-benefit-card i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

.detailed-benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison {
    padding: 6rem 5%;
    background: var(--white);
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

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

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

.comparison-table tr:nth-child(even) {
    background-color: var(--gray);
}

.comparison-table tr:hover {
    background-color: rgba(0, 35, 149, 0.05);
}

.check {
    color: var(--green);
    font-size: 1.2rem;
}

.cross {
    color: var(--red);
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 5px solid var(--yellow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    font-weight: bold;
    margin-right: 15px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(rgba(222, 56, 49, 0.9), rgba(222, 56, 49, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3') center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-download {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    padding: 1rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    color: var(--yellow);
}

.footer-about p {
    margin: 1rem 0;
    color: #ccc;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--yellow);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-info i {
    color: var(--yellow);
    margin-top: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

/* Animation Elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 184, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 28, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        gap: 2.5rem;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .header-cta {
        display: none;
    }

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .app-download {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.5rem;
    }

    .page-hero {
        padding: 4rem 5% 6rem;
    }

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

    .benefit-card,
    .detailed-benefit-card {
        padding: 1.5rem;
    }
}