* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.header {
    background: white;
    height: 120px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('carousel-1.jpg');
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 600px;
    position: absolute;
    top: 120px;
    left: 0;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100vw;
    height: 600px;
    margin-left: calc(-50vw + 50%);
    margin-top: 200px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active { opacity: 1; }

.slide-content {
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 80px;
    border-radius: 10px;
    max-width: 1000px;
    margin: 0 20px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.content {
    max-width: 1200px;
    margin: 720px auto 0;
    padding: 40px 20px;
}

.section {
    margin-bottom: 60px;
}

.section h2 {
    color: #007acc;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #007acc;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.full-width-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 20px;
    background: linear-gradient(135deg, #007acc 0%, #005a99 100%);
    color: white;
    text-align: center;
}

.full-width-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.full-width-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.full-width-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 80px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007acc;
}

.btn-submit {
    background: #007acc;
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #005a99;
}

.footer {
    background: white;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #007acc;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007acc;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        height: 80px;
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 300px;
        margin-top: 80px;
    }
    
    .slide-content {
        padding: 20px;
        margin: 0 10px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .content {
        margin-top: 380px;
        padding: 20px 15px;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .full-width-section {
        padding: 40px 15px;
    }
    
    .full-width-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .full-width-section p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .contact-form {
        padding: 20px;
        margin: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}
