/* 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;
    background-color: #f5f5f5;
}

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

a {
    text-decoration: none;
    color: #0057b8;
    transition: color 0.3s;
}

a:hover {
    color: #003a7a;
}

/* Header styles */
header {
    background-color: #0057b8;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.coat-of-arms {
    height: 60px;
    margin-right: 15px;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

nav {
    margin-top: 15px;
}

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

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

nav ul li a {
    color: white;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero section */
.hero {
    background-color: #0057b8;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #0057b8;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Section styles */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #0057b8;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #0057b8;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.blue {
    background-color: #f0f7ff;
}

.blue h2 {
    color: #0057b8;
}

.blue h2::after {
    background-color: #0057b8;
}

/* Content columns */
.content-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.column {
    flex: 1;
    min-width: 300px;
}

.column p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Stats box */
.stat-box {
    background-color: #0057b8;
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat {
    margin-bottom: 20px;
    text-align: center;
}

.stat:last-child {
    margin-bottom: 0;
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.label {
    font-size: 1rem;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #0057b8;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0057b8;
}

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

.price {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0057b8;
}

/* Methodology */
.methodology {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background-color: #0057b8;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #0057b8;
}

/* Contact */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.contact-card i {
    font-size: 2rem;
    color: #0057b8;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #0057b8;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 2;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coat-of-arms-small {
    height: 40px;
    margin-bottom: 15px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-links ul li a {
    color: #ccc;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ccc;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header .logo {
        flex-direction: column;
        text-align: center;
    }
    
    header h1 {
        margin-top: 10px;
        font-size: 1.5rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
}
