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

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

a {
    text-decoration: none;
    color: #0066cc;
}

/* Header */
header {
    background: linear-gradient(to right, #ffffff, #ffffff);
    color: rgba(240, 177, 6, 1);
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1e40af !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
    color: #1e40af !important;
}

.logo span {
    color: #f0b106 !important;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #1e293b;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: rgba(25, 52, 172, 0.2);
}

/* Hero Section */
.hero {
    background: url('/api/placeholder/1200/400') no-repeat center center/cover;
    height: 300px;
    position: relative;
    color: rgb(255, 255, 255);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #f5f5f5;
    color: #0055aa;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.service-detail {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.service-text h3 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    color: #0066cc;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: #e9f2ff;
    text-align: center;
}

.cta h2 {
    font-size: 28px;
    color: #0066cc;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-item {
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-answer {
    color: #555;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    .service-detail {
        flex-direction: column !important;
    }
    
    .service-image {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}