/* Global Styles */
:root {
    --primary-color: #5C3D99;
    --secondary-color: #FF44A1;
    --accent-color: #6E44FF;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --background-color: #F6F7FC;
    --card-background: #FFFFFF;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #6E44FF 0%, #FF44A1 100%);
}

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

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

h1, h2, h3, h4 {
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 5rem 0;
}

.cta-btn {
    display: inline-block;
    background: var(--gradient);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 68, 255, 0.4);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(110, 68, 255, 0.6);
    color: var(--light-text);
}

.cta-btn-small {
    display: inline-block;
    background: var(--gradient);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 68, 255, 0.4);
    color: var(--light-text);
}

/* Header Styles */
header {
    background-color: var(--card-background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo-svg {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.05) 0%, rgba(255, 68, 161, 0.05) 100%);
    overflow: hidden;
    padding-top: 2rem;
}

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

.hero-content {
    width: 50%;
    padding-right: 2rem;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.2) 0%, rgba(255, 68, 161, 0.2) 100%);
    z-index: -1;
}

.hero-visual {
    width: 45%;
}

/* Features Section */
.features {
    background-color: var(--card-background);
}

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

.feature-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.05) 0%, rgba(255, 68, 161, 0.05) 100%);
    text-align: center;
}

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

/* FAQ Section */
.faq {
    background-color: var(--card-background);
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    color: var(--primary-color);
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
}

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

.faq-answer {
    padding-top: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--light-text);
    text-align: center;
}

.cta-section h2,
.cta-section p {
    color: var(--light-text);
}

.cta-section .cta-btn {
    background: var(--light-text);
    color: var(--primary-color);
    margin-top: 1rem;
}

.cta-section .cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #352160;
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-logo-svg {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links-column {
    margin-right: 4rem;
    margin-bottom: 2rem;
}

.footer-links-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-links-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-visual {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-open nav {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--card-background);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-open nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .mobile-menu-open nav ul li {
        margin: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
