/* Base Styles */
:root {
    --primary-color: #8a2be2; /* Purple */
    --secondary-color: #7209b7;
    --accent-color: #f72585;
    --dark-color: #2b2d42;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-purple: #f0e6ff;
    --gradient-bg: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fafafa;
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

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

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

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

a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

section {
    padding: 100px 0;
}

.primary-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 14px 32px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

.primary-button:hover {
    background: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
}

/* Header Styles */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.logo-svg {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero-section {
    background: var(--gradient-bg);
    color: var(--light-text);
    text-align: center;
    padding: 180px 20px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light-text);
    opacity: 0.95;
}

.cta-button {
    margin-top: 30px;
}

/* Process Section */
.process-section {
    background-color: var(--light-color);
    text-align: center;
}

.process-section h2 {
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.process-item {
    padding: 30px 20px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

.process-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.process-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cta-centered {
    text-align: center;
    margin-top: 50px;
}

/* Features Section */
.features-section {
    background-color: #fcfcfc;
    text-align: center;
    padding: 120px 0;
}

.features-section h2 {
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.feature-card {
    padding: 40px 20px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-purple);
    text-align: center;
    padding: 120px 0;
}

.testimonials-section h2 {
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.testimonial-card {
    padding: 40px 25px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author p {
    font-weight: 600;
    color: var(--dark-color);
}

.rating {
    color: gold;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 80px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo p {
    margin-top: 15px;
    opacity: 0.7;
}

.footer-logo-svg {
    margin-bottom: 15px;
}

.footer-links h4 {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--light-text);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 50px auto 0;
}

.footer-disclaimer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 20px 80px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .process-grid, .features-grid, .testimonial-grid {
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-links {
        margin: 0 auto 30px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .primary-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .process-item, .feature-card, .testimonial-card {
        padding: 25px 15px;
    }
    
    .process-grid, .features-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
