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

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

/* Container */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Header */
header {
    background: white;
    padding: 20px 0;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

/* Navigation */
nav {
    background: linear-gradient(to right, #1e3a8a, #1e40af);
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

nav li {
    padding: 12px 8px;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

/* Main content */
.main-content {
    display: flex;
    flex-wrap: wrap;
    padding: 32px 0;
    gap: 20px;
}

.content-left {
    flex: 2;
    min-width: 300px;
}

.sidebar {
    flex: 1;
    min-width: 280px;
    background: #dbeafe;
    padding: 20px;
    border-radius: 8px;
}

/* Typography */
h1, h2, h3 {
    color: #1e3a8a;
    margin-bottom: 16px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

p {
    margin-bottom: 16px;
}

/* Contact info box */
.contact-box {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}

/* Services list */
.services-list {
    list-style: none;
}

.services-list li {
    background: #bfdbfe;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
}

/* Links */
a {
    color: #1e40af;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.email-link {
    color: #dc2626;
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav li {
        padding: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .main-content {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .content-left,
    .sidebar {
        width: 100%;
        min-width: auto;
    }
    
    h2 {
        font-size: 20px;
    }
    
    nav a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 15px 0;
    }
    
    .logo {
        max-height: 60px;
    }
    
    .sidebar {
        padding: 15px;
    }
    
    .contact-box {
        padding: 15px;
    }
}
