/* 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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fbbf24;
    padding: 60px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.header-image {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 3px solid #fbbf24;
}

.header-text {
    text-align: left;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 300;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

ul{
    margin-top: 10px;
    margin-bottom: 2px;
    padding-left: 20px;
    list-style-type: none;
}

/* Navigation Styles */
nav {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1e40af;
    color: #fbbf24;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.nav-button.active {
    background-color: #f59e0b;
    color: #1e40af;
    border-color: #f59e0b;
}

/* Main Content Styles */
main {
    margin: 40px 0;
}

.content-section {
    background-color: white;
    margin-bottom: 40px;
    padding: 60px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-section:nth-child(even) {
    background-color: #f8f9fa;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e40af;
    text-align: center;
    font-weight: 300;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    border-color: #fbbf24;
}

.service-item h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    text-align: center;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.contact-item h3 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form button {
    padding: 15px 30px;
    background-color: #1e40af;
    color: #fbbf24;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fbbf24;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .logo-placeholder {
        width: 150px;
        height: 112px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .logo-placeholder {
        width: 120px;
        height: 90px;
    }
    
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 30px 0;
        margin-bottom: 20px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Smooth scroll offset for fixed navigation */
html {
    scroll-behavior: smooth;
}

.content-section {
    scroll-margin-top: 80px;
}