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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 35px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.logo {
    margin-bottom: 25px;
}

.logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.content {
    color: #2c3e50;
    max-width: 650px;
    margin: 0 auto;
}

.announcement-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    color: #34495e;
}

.stay-tuned {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0047AB;
    letter-spacing: 0.5px;
}

.signature {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    font-size: 17px;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: #0047AB;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 200px;
    justify-content: center;
}

.contact-button:hover {
    background-color: #003380;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 71, 171, 0.2);
}

.email-button {
    background-color: #2ecc71;
}

.email-button:hover {
    background-color: #27ae60;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

@media (max-width: 600px) {
    .announcement-card {
        padding: 25px 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
    }
} 