* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
}

.header {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    font-size: 14px;
}

.header-left {
    font-weight: bold;
}

.header-right a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 42px;
    color: #f4c13d;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
}

.primary-button {
    background: #f4c13d;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-image img {
    margin-top: 40px;
    max-width: 800px;
    width: 100%;
    border-radius: 100px 0 100px 0;
}

.services {
    text-align: center;
    padding: 80px 20px;
}

.services h2 {
    font-size: 36px;
    color: #f4c13d;
    margin-bottom: 40px;
}

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

.service-card {
    background: #000;
    color: #fff;
    width: 300px;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
}

.service-card img {
    width: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
}

.about {
    text-align: center;
    padding: 80px 20px;
}

.about h2 {
    font-size: 36px;
    color: #f4c13d;
    margin-bottom: 20px;
}

.about h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 30px;
}

.about p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-image img {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
    border-radius: 100px 0 100px 0;
}

/* Адаптив */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .header {
        flex-direction: column;
        gap: 10px;
    }
}

.sectors {
    text-align: center;
    padding: 80px 20px;
}

.sectors h2 {
    font-size: 36px;
    color: #f4c13d;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

.small-text {
    font-size: 14px;
    margin-bottom: 30px;
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.sector-item {
    background: #000;
    color: #f4c13d;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
}

.history {
    padding: 80px 20px;
}

.history-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.history-text {
    flex: 1 1 500px;
    max-width: 500px;
}

.history-text h2 {
    font-size: 36px;
    color: #f4c13d;
    margin-bottom: 20px;
}

.history-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.history-text p {
    font-size: 16px;
    margin-bottom: 30px;
}

.history-image img {
    width: 300px;
    border-radius: 100px 0 100px 0;
}

.contact {
    background: #000;
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.contact h2 {
    font-size: 32px;
    color: #f4c13d;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

.contact-form textarea {
    height: 100px;
}

.footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

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

.footer-left {
    font-weight: bold;
    color: #f4c13d;
}

.footer-right a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
}

.copyright {
    font-size: 12px;
    color: #777;
}

/* Адаптив */
@media (max-width: 768px) {
    .sectors-grid {
        flex-direction: column;
        gap: 20px;
    }

    .history-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}

.thank-you-page {
    background: #000;
    color: white;
    max-width: 900px;
    margin: 80px auto;
    padding: 50px 30px;
    text-align: center;
    border-radius: 40px;
}

.thank-you-page h1 {
    font-size: 36px;
    color: #f4c13d;
    margin-bottom: 30px;
}

.thank-you-page p {
    margin-bottom: 20px;
    font-size: 16px;
}

.thank-you-button {
    margin-top: 40px;
}

.thank-you-button .primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f4c13d;
    padding: 15px 30px;
    border-radius: 50px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}
