:root {
    --primary-color: #4A90E2;
    --secondary-color: #50E3C2;
    --dark-text: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.flyer-container {
    max-width: 800px;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.flyer-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.flyer-header .logo {
    max-width: 120px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(255,255,255,0.2);
    padding: 5px;
}

.flyer-header h1 {
    margin: 0;
    font-size: 2.2em;
    font-weight: 700;
}

.flyer-header .subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 600px;
    margin: 10px auto 0;
}

.flyer-main {
    padding: 30px;
}

.flyer-main h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.feature-card h3 {
    margin-top: 0;
    color: var(--dark-text);
}

.flyer-footer {
    background-color: #343a40;
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

.flyer-footer h2 {
    margin-top: 0;
    font-size: 1.8em;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-text);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 15px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(80, 227, 194, 0.4);
}

.contact-info {
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 20px;
}