:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --background-color: #ecf0f1;
    --text-color: #34495e;
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
nav {
    display: flex;
}
nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}
nav a:hover {
    color: var(--primary-color);
}
main {
    flex-grow: 1;
    padding-top: 80px;
}
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.hero .former-name {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.8;
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}
.products {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    gap: 2rem;
}
.product {
    flex-basis: calc(50% - 1rem);
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.product:hover {
    transform: translateY(-5px);
}
.pricing {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}
.feature-boxes {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
}
.feature-box {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.feature-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.perspective-boxes {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
}
.perspective-box {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}
.perspective-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.testimonial {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
}
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}
footer a {
    color: var(--background-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: var(--primary-color);
}
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0.5rem;
}
.cta-button:hover {
    background-color: #c0392b;
}
.product-details, .faq {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 2rem 0;
}
.faq h3 {
    color: var(--primary-color);
}
.button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
}
@media (max-width: 768px) {
    .feature-boxes, .feature-grid, .perspective-boxes {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .hamburger {
        display: flex;
    }
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    nav.show {
        display: flex;
    }
    nav a {
        margin: 0.5rem 0;
    }
    .products {
        flex-direction: column;
    }
    .product {
        margin-bottom: 1rem;
    }
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#menu .dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

#menu .dropdown-content a:hover {
    background-color: #f1f1f1;
}

#menu .dropbtn {
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem;
    cursor: pointer;
}

#menu .dropbtn:hover {
    color: var(--primary-color);
}

/* Adjust existing styles for consistency */
#menu a, #menu .dropbtn {
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem;
    display: inline-block;
}

#menu a:hover, #menu .dropbtn:hover {
    color: var(--primary-color);
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
    #menu .dropdown-content {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
    }

    #menu .dropdown:hover .dropdown-content {
        display: block;
    }

    #menu .dropdown-content a {
        padding-left: 2rem;
    }
}