body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fdfdfd;
    color: #333;
}

header, footer {    
    background: #fff;
    border-bottom: 1px solid #eee;
    text-align: right;
    padding: 1rem 2rem;
}

header nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    color: #333;
}

header nav a:hover {
    color: #4682B4;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.accent-gradient {
    background: linear-gradient(to bottom, #E0ECF8, #4682B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

.content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.content h2 {
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #333;
}

.content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.cta {
    text-align: center;
    margin: 4rem 0;
}

.cta a {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    background: #4682B4;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta a:hover {
    background: #5b9bcf;
}

.community-section {
    background: #f7f9fc;
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.community-section h2 {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.community-section p {
    max-width: 500px;
    margin: 0 auto 2rem auto;
    color: #444;
    line-height: 1.6;
}

.signup-form {
    display: inline-block;
    text-align: left;
}

.signup-form input[type="text"], .signup-form input[type="email"] {
    width: 250px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.signup-button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background: #4682B4;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.signup-form button:hover {
    background: #5b9bcf;
}

.signup-form label {
    display: block; /* Make the label appear above the textarea */
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
}

.signup-form textarea {
    width: 100%;
    height: 100px; /* Adjust height as needed */
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical; /* Allow vertical resizing only */
    box-sizing: border-box;
    font-family: Arial, sans-serif; /* Consistent font */
}

.signup-form textarea:focus {
    outline: none;
    border-color: #4682B4; /* Highlighted border color */
    box-shadow: 0 0 3px rgba(70, 130, 180, 0.5); /* Soft focus shadow */
}

.error-message {
    color: #d9534f;
    font-weight: bold;
}

.success-message {
    color: #5cb85c;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #999;
    border: none;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .signup-form input[type="text"], 
    .signup-form input[type="email"] {
        width: 100%;
    }
}

.sub-logo {
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 300;
    margin-top: 20px;
}

.hidden {
    display: none;
}