/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3 {
    color: #111;
    line-height: 1.2;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    max-height: 40px;
    display: block;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.desktop-nav ul li {
    display: inline-block;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-color: #007bff;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #fff;
    color: #007bff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #eee;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.08);
}

.feature h3 {
    font-size: 1.4rem;
    margin-top: 0;
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
    padding: 4rem 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    background-color: #007bff;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

/* Footer */
footer {
    background-color: #f0f0f0;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}



.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-section p {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Screenshots Section */
.screenshots {
    padding: 5rem 0;
}

.screenshots h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.screenshot {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.08);
}

.screenshot img {
    max-width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.screenshot p {
    padding: 1.5rem;
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* Use Cases Section */
.use-cases {
    padding: 5rem 0;
    background-color: #fff;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.use-case {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.08);
}

.use-case h3 {
    font-size: 1.4rem;
    margin-top: 0;
}

.browser-support {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #eee;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
    transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(90deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(90deg);
}

.mobile-nav {
    display: none;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav.is-active {
        display: block;
    }
}
