:root {
    --primary-color: #005C41;      /* Dark green */
    --secondary-color: #FFD700;    /* Gold */
    --text-color: #333333;         /* Dark gray for general text */
    --bg-color: #F5F5F5;           /* Light gray background */
    --white: #FFFFFF;
    --button-primary: #004D35;     /* Darker green for primary button */
    --button-text-primary: #FFFFFF; /* White text for primary button */
    --button-secondary: #FFFFFF;   /* White for secondary button */
    --button-text-secondary: #004D35; /* Dark green text for secondary button */
    --button-hover: #003A29;       /* Even darker green for hover state */
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(rgba(0, 112, 74, 0.9), rgba(0, 112, 74, 0.9)), url('heroimage.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.button.primary {
    background-color: var(--button-primary);
    color: var(--button-text-primary);
    box-shadow: 0 4px 15px rgba(0, 77, 53, 0.4);
}

.button.primary:hover {
    background-color: var(--button-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 77, 53, 0.6);
}

.button.secondary {
    background-color: var(--button-secondary);
    color: var(--button-text-secondary);
    border: 2px solid var(--button-text-secondary);
}

.button.secondary:hover {
    background-color: var(--button-text-secondary);
    color: var(--button-secondary);
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .button {
        min-width: 200px;
    }
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}


.how-it-works {
    background-color: var(--white);
    padding: 80px 0;
}

.how-it-works-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.how-it-works-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.how-it-works-video.vertical {
    width: 33.33%; /* Adjust this value to control the width of the video container */
    max-width: 400px; /* Set a maximum width to prevent the video from becoming too large */
    margin: 0 auto;
}

.how-it-works-video.vertical {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio (9 / 16 = 0.5625, 1 / 0.5625 = 1.7778) */
    height: 0;
}

.how-it-works-video.vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.how-it-works-text {
    flex: 1;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .how-it-works-content {
        flex-direction: column;
    }

    .how-it-works-video.vertical {
        width: 100%;
        max-width: 300px; /* Adjust for smaller screens */
    }
}

.how-it-works-image {
    flex: 1;
    max-width: 50%;
}

.how-it-works-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.how-it-works-text {
    flex: 1;
}

.how-it-works h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

#form-status {
    margin-top: 1rem;
    text-align: center;
    color: #4CAF50; /* Green color for success message */
}

.shortcut-list {
    list-style-type: none;
    padding: 0;
}

.shortcut-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.shortcut-key {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    margin-right: 10px;
    font-weight: bold;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.signup-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.faq-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}
