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

body {
    background-color: #f7f5f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.accent-text {
    color: #ff4500;
    font-weight: 600;
}

.cta-section {
    margin-top: 50px;
}

.email-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
    border: 2px solid #ff4500;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: inherit;
}

.email-input::placeholder {
    color: #999;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.submit-btn {
    display: inline-block;
    background-color: #ff4500;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    margin-bottom: 35px;
}

.submit-btn:hover {
    background-color: #e63e00;
}

.submit-btn:active {
    transform: scale(0.98);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    border: 1.5px solid #ff4500;
    border-radius: 999px;
    color: #ff4500;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.social-link:hover {
    background-color: #ff4500;
    color: #fff;
}

.footer {
    margin-top: 40px;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}