/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Header */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1e3a8a;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-icon {
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-button {
    background: transparent;
    border: 1.5px solid #1e3a8a;
    color: #1e3a8a;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-button:hover {
    background: #1e3a8a;
    color: #ffffff;
}

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

.services h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #f3f4f6;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #111827;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #111827;
}

.feature p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: #fafafa;
}

.blog h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #111827;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.blog-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #111827;
}

.blog-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #1e3a8a;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e3a8a;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1e3a8a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services, .why-choose, .blog {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: #fafafa;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #111827;
}

.page-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 4rem;
    text-align: center;
}

.service-detail h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1.5rem 0 1rem;
    color: #111827;
}

.service-detail p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail ul {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.service-detail li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail li:before {
    content: "•";
    color: #1e3a8a;
    position: absolute;
    left: 0;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
}

.blog-date {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2, .contact-form h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #111827;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.submit-btn {
    background: #1e3a8a;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1e40af;
}

/* About Home Section */
.about-home {
    padding: 80px 0;
    background: #fafafa;
}

.about-content-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #ffffff;
    color: #1e3a8a;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background: #f8fafc;
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 32px;
    border: 1.5px solid #ffffff;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #1e3a8a;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: #111827;
}

.legal-text p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text li {
    color: #374151;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-content-home {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services h2, .why-choose h2, .blog h2 {
        font-size: 1.75rem;
    }
    
    .service-card, .blog-card {
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
}