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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

header {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    color: #111;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    border-left: 4px solid #3182ce;
    padding-left: 15px;
}

p {
    margin-bottom: 12px;
    color: #4a5568;
}

strong {
    color: #2d3748;
}

.contact-section a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    text-align: center;
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3182ce;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s;
    font-weight: 600;
}

.back-button:hover {
    background-color: #2b6cb0;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
}