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

:root {
    --primary-color: #4a7dfc;
    --secondary-color: #9bb5ff;
    --light-color: #e6eeff;
    --dark-color: #1a2746;
    --text-color: #333333;
    --background-color: #f9fbff;
    --white-color: #ffffff;
    --gray-color: #f0f4ff;
    --shadow: 0 4px 12px rgba(74, 125, 252, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

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

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

.logo-svg {
    margin-right: 0.75rem;
}

.logo h1 {
    font-size: 1.4rem;
    margin: 0;
}

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

nav ul {
    display: flex;
    gap: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--gray-color);
    background-image: linear-gradient(135deg, var(--light-color) 0%, var(--white-color) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    margin-top: 0.5rem;
}

.cta-button:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 125, 252, 0.2);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white-color);
}

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

.about-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 125, 252, 0.15);
}

.icon {
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

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

.feature-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 125, 252, 0.15);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--white-color);
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-section h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--dark-color);
}

.cta-section .cta-button {
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--light-color);
}

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

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

/* Responsive Styles */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links {
        flex-grow: 1;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-content h2 {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
}
