/* Start custom CSS for html, class: .elementor-element-67c7a47 */@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section-container {
    background-color: #f5f5f5;
    padding: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    background-color: #ba8b00;
    color: #fff;
    padding: 10px 0;
}

.section-header p {
    margin: 0;
    font-size: 1.2em;
}

.section-header .phone-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #fff;
    color: #ba8b00;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.section-header .phone-button:hover {
    background-color: #f0f0f0;
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.section-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.section-text h1 {
    color: #ba8b00;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-text h2, .section-text h3 {
    color: #4c4c4c;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.section-text h3 {
    color: #ba8b00;
    font-size: 1.8em;
}

.section-text .price {
    color: #ba8b00;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-text p {
    color: #4c4c4c;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.section-text .promotion {
    color: red;
    font-size: 1.2em;
    font-weight: bold;
}

.section-form {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.section-form h2 {
    color: #ba8b00;
    margin-bottom: 10px;
    font-size: 1.8em;
    font-weight: bold;
}

.section-form h3 {
    color: #4c4c4c;
    margin-bottom: 10px;
}

.section-form p {
    color: #4c4c4c;
    margin-bottom: 20px;
}

.section-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkbox-container {
    text-align: left;
    margin-bottom: 20px;
}

.checkbox-container label {
    font-size: 0.9em;
    color: #4c4c4c;
}

.checkbox-container a {
    color: #ba8b00;
    text-decoration: none;
}

.gradient-button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #ba8b00, #d4a800);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gradient-button:hover {
    background-position: 100% 50%;
}

.section-image {
    flex: 1;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .section-content {
        flex-direction: column;
    }

    .section-text, .section-form, .section-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 1em;
    }

    .section-text h1 {
        font-size: 2em;
    }

    .section-text p, .section-form p, .section-form h2, .section-form h3 {
        font-size: 1em;
    }

    .gradient-button {
        font-size: 1em;
    }

    .section-image img {
        max-width: 100%;
    }
}/* End custom CSS */