/* Base Styles and Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #1A535C;
    --light: #F7FFF7;
    --gray: #666;
    --gradient: linear-gradient(120deg, var(--primary), var(--secondary));
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: var(--light);
    line-height: 1.6;
}

.page-container {
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

ul {
    list-style-type: none;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container h1 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--primary);
}

.logo-container span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: #333;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-button span {
    height: 2px;
    width: 100%;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Banner Section */
.banner {
    padding: 80px 0 60px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    z-index: 0;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(78, 205, 196, 0.1);
    z-index: 0;
}

.banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-content {
    padding-right: 20px;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
    padding: 0;
}

.banner-content h2::after {
    display: none;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.banner-graphic {
    max-width: 100%;
}

.action-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.action-button.highlight {
    background: var(--accent);
    color: var(--dark);
}

/* Technology Section */
.tech-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tech-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

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

.icon-container {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.tech-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-list {
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 20px;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.8;
    line-height: 1;
    margin-right: 20px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--gray);
}

.action-center {
    text-align: center;
    margin-top: 30px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 107, 107, 0.1);
    font-family: Georgia, serif;
}

.rating {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.author {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section h2::after {
    background-color: white;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo p {
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.link-group h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.link-group ul li a:hover {
    color: var(--primary);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .banner .container {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        text-align: center;
        padding-right: 0;
    }
    
    .banner-content h2 {
        text-align: center;
    }
    
    .banner-content h2::after {
        display: block;
    }
    
    .banner-graphic {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .menu-button {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .menu-toggle:checked ~ nav {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 30px;
        gap: 30px;
    }
    
    .link-group {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .benefit-item {
        flex-direction: column;
    }
    
    .benefit-number {
        margin-bottom: 10px;
    }
}
