/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 30px;
    border-bottom: 4px solid #004d99;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.visit-button {
    display: inline-block;
    background-color: #0077cc;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #005599;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visit-button:hover {
    background-color: #005599;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 85, 153, 0.3);
}

/* Main content styles */
main {
    flex: 1;
}

section {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

h2 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #0077cc;
    padding-bottom: 10px;
}

h3 {
    color: #0066cc;
    margin: 20px 0 15px 0;
    font-size: 1.4rem;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.email-info {
    background-color: #f5f8fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #0077cc;
    margin-top: 20px;
}

.contact-section {
    background: linear-gradient(135deg, #004d99 0%, #0066cc 100%);
    color: white;
}

.contact-section h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    border-radius: 8px;
    margin-top: 30px;
    border-top: 4px solid #0077cc;
}

footer p {
    margin-bottom: 5px;
    font-size: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 0;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 15px;
    }
}
