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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #6a5acd;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a3aad;
}

section {
    padding: 80px 0;
}

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

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

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

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

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

.desktop-menu {
    display: flex;
}

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

.desktop-menu a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #6a5acd;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 30px;
    height: 30px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px 0;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #8ec5fc 0%, #e0c3fc 100%);
    color: white;
    padding: 100px 0;
}

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

.hero-content h1 {
    margin-bottom: 25px;
    font-size: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #6a5acd;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #4a3aad;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 150px;
    width: 40%;
    display: none;
}

.hero-svg {
    width: 100%;
    height: auto;
}

/* Features Section */
#features {
    background-color: white;
}

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

.feature {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

/* Gallery Section */
#gallery {
    background-color: #f5f5f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item svg {
    width: 100%;
    height: auto;
}

.gallery-item h3 {
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
}

/* About Section */
#about {
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    max-width: 600px;
    margin-bottom: 40px;
}

.about-visual {
    width: 100%;
    max-width: 500px;
}

.about-visual svg {
    width: 100%;
    height: auto;
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #6a5acd 0%, #4a3aad 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-button-large {
    display: inline-block;
    background-color: white;
    color: #6a5acd;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.cta-button-large:hover {
    background-color: #f0f0f0;
    color: #4a3aad;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
    background-color: #333;
    color: #f5f5f5;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.footer-links ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 30px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: #f5f5f5;
}

.footer-legal {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal p {
    margin-bottom: 10px;
}

.footer-legal a {
    color: #f5f5f5;
    text-decoration: underline;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        display: block;
    }
    
    #hero .container {
        position: relative;
    }
    
    .about-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .about-text {
        margin-right: 40px;
        margin-bottom: 0;
    }
    
    .about-visual {
        width: 45%;
    }
}

@media (max-width: 767px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    #hero {
        padding: 60px 0;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
