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

a,
li {
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

header {
    background-color: #e8ecf0;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

.btn-orange {
    background-color: #ff8c00;
    color: white;
}

.btn-dark {
    background-color: #1a3a4a;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero {
    background-color: #e8ecf0;
    padding: 60px 80px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.hero-image {
    width: 750px;
}

.services {
    padding: 80px 80px;
    background-color: #ffffff;
}

.services h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 100px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.service-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.service-text p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    background-color: #e8ecf0;
    padding: 80px 80px 100px;
    display: flex;
}

.contact-form .contact-info {
    flex: 1;
    margin-right: 60px;
}

.contact-form .contact-info h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-form .contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.contact-form .contact-info .contact {
    margin-bottom: 30px;
}

.contact-form .form {
    flex: 1;
}

.contact-form h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    background-color: white;
    color: #666;
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

textarea {
    resize: vertical;
    min-height: 60px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e67e00;
}

@media (max-width: 1024px) {

    header,
    .hero,
    .services,
    .contact-form {
        padding: 40px 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        width: 530px;
    }

    .services-grid {
        gap: 40px 60px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        width: 100px;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-image {
        width: 100%;
        margin-top: 40px;
    }

    .services {
        padding: 50px 30px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-item {
        gap: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-text h3 {
        font-size: 20px;
    }

    .service-text p {
        font-size: 15px;
    }

    .contact-form {
        padding: 50px 30px 60px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    input,
    textarea {
        padding: 12px 18px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 15px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 20px;
    }

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

    .btn {
        width: 100%;
    }

    .hero {
        padding: 30px 20px 50px;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services {
        padding: 40px 20px;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-text h3 {
        font-size: 18px;
    }

    .contact-form {
        padding: 40px 20px 50px;
        display: block;
    }

    .contact-form h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .contact-form .contact-info {
        margin-right: 0;
        margin-bottom: 30px;
    }
}