/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7f9;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header styles */
h1 {
    color: #1599d7;
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-align: center;
}

.subtitle {
    color: #666;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 2px solid #f38a00;
}

/* Info box styles */
.info-box {
    background: linear-gradient(45deg, rgba(21, 153, 215, 0.05), rgba(243, 138, 0, 0.05));
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(21, 153, 215, 0.2);
}

.info-box p {
    margin: 0 0 20px 0;
    color: #444;
    font-size: 1.1em;
}

/* Button styles */
#learnMore {
    background: #1599d7;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

#learnMore:hover {
    background: #f38a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#learnMore:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }
}