/* Basic Reset & Body Styles */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    --framer-background-color: #000000;
    --framer-foreground-color: #ffffff;
    --framer-font-family: "Inter", "Inter Placeholder", sans-serif;
    --framer-font-style: normal;
    --framer-font-weight: 400;
    --framer-letter-spacing: 0em;
    --framer-line-height: 1.4em;
    --framer-text-alignment: start;
    --framer-text-color: var(--framer-foreground-color);
    --framer-text-decoration: none;
    --framer-text-transform: none;
}

.framer-1g33q1t {
    background: linear-gradient(180deg, #1c1c1c 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(28, 28, 28, 0.8); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

nav a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

nav .logo-link {
    display: flex;
    align-items: center;
    color: white;
}

nav .logo-link img {
    height: 40px;
    margin-right: 10px;
}

nav .logo-link span {
    font-weight: bold;
    font-size: 1.5rem;
}

nav .nav-links {
    display: flex;
    gap: 1.5rem;
}

nav .action-buttons {
    display: flex;
    gap: 1rem;
}

nav button {
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

nav .login-btn {
    background-color: #333;
    color: white;
}

nav .login-btn:hover {
    background-color: #444;
}

nav .demo-btn {
    background-color: #8A2BE2; /* Purple */
    color: white;
}

nav .demo-btn:hover {
    background-color: #7a1cc1;
}

/* Main Content Styles */
main {
    padding-top: 80px; /* Adjust based on header height */
    flex-grow: 1;
}

/* Hero Section Styles */
.hero-section {
    text-align: center;
    padding: 6rem 2rem 4rem; /* Increased top padding */
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #aaa;
}

.hero-section .cta-buttons button {
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-section .cta-buttons .create-account-btn {
    background-color: #8A2BE2; /* Purple */
    color: white;
    margin-right: 1rem;
}

.hero-section .cta-buttons .book-demo-btn {
    background-color: #555;
    color: white;
}

.hero-section .cta-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.hero-section .cta-buttons .book-demo-btn:hover {
     box-shadow: 0 4px 10px rgba(85, 85, 85, 0.3);
}

/* Footer Styles */
footer {
    background-color: #111;
    color: #aaa;
    padding: 3rem 2rem;
    margin-top: auto;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.footer-section {
    min-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-section .logo-link {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 1rem;
}

.footer-section .logo-link img {
    height: 30px;
    margin-right: 8px;
}

.footer-section .logo-link span {
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section .footer-links a {
    display: block;
    margin-bottom: 0.7rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    nav .nav-links {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    nav .action-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Add styles for other sections (Features, FAQ, etc.) based on the original site structure */

