/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #4fad27; /* Green background from reference */
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Main content styles */
main {
    display: flex;
    flex: 1;
    gap: 2rem;
}

.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #64B5F6; /* Light blue highlight color */
}

.subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.message {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 80%;
    line-height: 1.6;
}

/* Form styles */
.subscribe {
    margin-bottom: 2rem;
}

#subscribe-form {
    display: flex;
    max-width: 500px;
}

#email {
    flex: 1;
    padding: 1rem;
    border: none;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 4px 0 0 4px;
}

#email::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#subscribe-form button {
    padding: 1rem 1.5rem;
    border: none;
    background-color: #023693; /* Coral/salmon color for button */
    color: white;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s;
}

#subscribe-form button:hover {
    background-color: #023693;
}

/* Image styles */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.planting-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Footer styles */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .title {
        font-size: 3rem;
    }
    
    .logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    
    .content-left {
        text-align: center;
        align-items: center;
    }
    
    .message {
        max-width: 100%;
    }
    
    #subscribe-form {
        margin: 0 auto;
    }
    
    .image-container {
        margin-top: 2rem;
    }
    
    .planting-image {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    #subscribe-form {
        flex-direction: column;
    }
    
    #email {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    #subscribe-form button {
        border-radius: 4px;
    }
    
    .planting-image {
        max-width: 100%;
    }
}
