/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px 80px;
}

/* Header/Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background-color: #e63946; /* Red accent from image */
    border-radius: 50% 50% 50% 0; /* Creates the leaf-like shape */
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
}

.contact-info {
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    font-size: 100px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 60px;
}

/* Bottom Section */
.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cta-box {
    flex: 1;
}

.cta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.signup-form {
    display: flex;
    gap: 10px;
}

.signup-form input {
    background: transparent;
    border: 1px solid #333;
    padding: 12px;
    color: white;
    width: 250px;
    border-radius: 4px;
}

.signup-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.signup-form button:hover {
    background: #e63946;
    color: #fff;
}

.description {
    flex: 1;
    max-width: 400px;
    font-family: 'Courier New', Courier, monospace; /* Monospace font from image */
    line-height: 1.6;
    color: #ccc;
    font-size: 18px;
    text-align: right;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    body { padding: 30px; }
    .hero-text { font-size: 50px; }
    .bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .description { text-align: left; }
    .signup-form input { width: 100%; }
}
