* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

header {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9)) center/cover;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    flex: 1 1 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.service-card h3 img {
    width: 30px;
    margin-right: 10px;
}

.service-card ul {
    list-style-type: none;
}

.service-card li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-card li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.advantages-vertical {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.advantages-vertical h2 {
    color: #1e3c72;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.advantages-vertical ul {
    list-style-type: none;
    max-width: 800px;
    margin: 0 auto;
}

.advantages-vertical li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.advantages-vertical li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #1e3c72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.advantages-vertical li:nth-child(1):before { content: "1"; }
.advantages-vertical li:nth-child(2):before { content: "2"; }
.advantages-vertical li:nth-child(3):before { content: "3"; }
.advantages-vertical li:nth-child(4):before { content: "4"; }
.advantages-vertical li:nth-child(5):before { content: "5"; }

.contact {
    background: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
    padding: 40px 0;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-image {
    width: 250px;
    margin-right: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-inner {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1;
}

.contact h2 {
    color: #1e3c72;
    margin-bottom: 15px;
}

.contact p {
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    background: #1e3c72;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #2a5298;
}

.faq-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    color: #1e3c72;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background: #f9f9f9;
    color: #1e3c72;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-question.active + .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer ul {
    margin-left: 20px;
    list-style-type: disc;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 40px;
}

.footer-link {
    color: #4CAF50;
    text-decoration: none;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .service-card {
        flex: 1 1 100%;
    }
    .contact-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }
    .contact-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    .advantages-vertical li {
        padding-left: 40px;
    }
    .faq-section {
        padding: 20px;
    }
    .faq-question {
        padding: 12px 15px;
    }
}