 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0c2575;
}

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

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

nav ul li a {
    position: relative;
    font-weight: 500;
}

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0c2575;
}

.contact-btn {
    display: flex;
    align-items: center;
    color: #0c2575;
    font-weight: 600;
}

.contact-btn svg {
    margin-right: 10px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(12, 37, 117, 0.8), rgba(12, 37, 117, 0.8)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px 100px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.services-intro {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.services-title {
    width: 40%;
}

.services-title h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0c2575;
    line-height: 1.2;
}

.services-desc {
    width: 55%;
}

.services-desc p {
    margin-bottom: 20px;
}

.send-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0c2575;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: #081a54;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: white;
    width: calc(33.333% - 20px);
    padding: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #0c2575;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0c2575;
}

.service-card p {
    margin-bottom: 20px;
}

.see-more {
    display: flex;
    align-items: center;
    color: #0c2575;
    font-weight: 600;
}

.see-more svg {
    margin-left: 10px;
    transition: transform 0.3s;
}

.see-more:hover svg {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #0c2575;
}

.testimonials-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    width: calc(33.333% - 20px);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '';
    height: 3px;
    width: 80%;
    background-color: #0c2575;
    position: absolute;
    top: 0;
    left: 10%;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 30px auto 20px;
    overflow: hidden;
}

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

.testimonial-name {
    color: #0c2575;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    padding: 0 15px;
}

/* Stats Section */
.stats {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.stats-intro {
    margin-bottom: 50px;
}

.stats-intro h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0c2575;
}

.stats-intro p {
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: #0c2575;
    color: white;
    padding: 40px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #0c2575;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.form-group {
    width: 30%;
}

.form-group input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 10px 0;
    color: white;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group label {
    position: absolute;
    left: 0;
    font-size: 14px;
}

.form-submit {
    margin-top: 20px;
}

.form-submit button {
    padding: 12px 80px;
    background-color: white;
    color: #0c2575;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit button:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #0c2575;
    padding: 20px 0;
    color: white;
}

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

.footer-logo {
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    list-style: none;
}

.footer-links ul li {
    margin-left: 20px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    color: rgba(255,255,255,0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0c2575;
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cookie-banner h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cookie-banner p {
    margin-bottom: 20px;
}

.cookie-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-accept {
    background-color: white;
    color: #0c2575;
}

.cookie-settings, .cookie-policy {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-intro {
        flex-direction: column;
    }
    
    .services-title, .services-desc {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .service-card {
        width: calc(50% - 15px);
    }
    
    .testimonials-grid {
        flex-wrap: wrap;
    }
    
    .testimonial-card {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .service-card {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        margin-top: 20px;
        justify-content: center;
    }
}