/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
}

.navbar .logo {
    height: 50px;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: white;
    color: #1e3c72;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e3c72;
    text-align: center;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #555;
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #1e3c72;
}

/* Why Choose Us Section */
.why-choose {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container h3,
.contact-info > h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.form-message {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.submit-button {
    background-color: #1e3c72;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

.contact-item a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e3c72;
    text-decoration: underline;
}

/* Service Pages Styles */
.service-hero {
    padding: 100px 0;
}

.service-overview {
    background-color: white;
    padding: 80px 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-features {
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-item h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

.service-benefits {
    background-color: white;
}

.benefits-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.benefit-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3c72;
    opacity: 0.3;
    min-width: 70px;
}

.benefit-item h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

.service-process {
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #1e3c72;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.process-step h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.use-cases,
.consulting-areas {
    background-color: white;
}

.use-cases-grid,
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case-item,
.area-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
}

.use-case-item h3,
.area-item h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.use-case-item p,
.area-item p {
    color: #666;
    line-height: 1.7;
}

.service-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.service-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
footer {
    background-color: #1e3c72;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .logo {
        height: 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .use-cases-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        gap: 15px;
    }

    .benefit-number {
        min-width: auto;
    }
}
