:root {
    --primary-color: #263435;
    --primary-button-color: #44589e;
    --secondary-color: #f5c50c;
    --accent-color: #f5c50c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-gray: #555;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), #1a2425);
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.value-proposition {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
}

.value-prop-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.value-prop-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.value-prop-container .subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    padding: 6rem 2rem;
    background-color: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #a38c45);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.use-cases {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #1a2425);
    color: white;
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.use-cases h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.use-cases .subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.final-cta {
    padding: 6rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-button-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(38, 52, 53, 0.3);
}

.cta-button:hover {
    background-color: #1a2829;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 52, 53, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.social-proof {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
}

.social-proof h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-showcase {
    padding: 6rem 2rem;
    background-color: white;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.showcase-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.showcase-container .subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.screenshot-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

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

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-content {
    padding: 2rem;
    text-align: left;
}

.screenshot-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.screenshot-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.screenshot-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.screenshot-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.screenshot-features li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        gap: 2rem;
    }

    .value-prop-container h2,
    .features h2,
    .use-cases h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .screenshot-item {
        margin: 0 1rem;
    }

    .showcase-container h2 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 3rem 1.5rem;
    }

    .policy-content h2 {
        font-size: 2rem;
    }

    .policy-content h3 {
        font-size: 1.3rem;
    }
}

/* Policy Page Styles */
#policy {
    padding: 6rem 2rem;
    background-color: white;
    min-height: 70vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.policy-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.policy-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.policy-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.policy-content p:first-of-type {
    font-style: italic;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.policy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-content li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
}

.policy-content li::marker {
    color: var(--secondary-color);
    font-weight: bold;
}

.policy-content a {
    color: var(--primary-button-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.policy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-content br + br {
    line-height: 2;
}

/* Special styling for contact information */
.policy-content p:has(a[href^="mailto"]) {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-button-color);
    margin: 2rem 0;
}

/* Alternative selector for better browser support */
.policy-content p:last-of-type {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-button-color);
    margin: 2rem 0;
}
