* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 50%, #fff3e0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(76, 175, 80, 0.1);
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.image-section {
    flex: 0 0 600px;
}

.circle-image {
    width: 600px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(76, 175, 80, 0.25),
        0 0 0 8px rgba(76, 175, 80, 0.15),
        0 0 0 16px rgba(76, 175, 80, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.circle-image:hover {
    transform: scale(1.02);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-section {
    flex: 1;
    max-width: none;
    width: 100%;
}

h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
    max-width: none;
    width: 100%;
}

.subtitle {
    font-size: 48px;
    font-weight: 600;
    color: #4caf50;
    text-transform: lowercase;
}

.cta-block {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-block:hover::before {
    left: 100%;
}

.cta-text {
    color: white;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.5;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    font-size: 24px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    outline: none;
    background: #f9fafb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus {
    border-color: #4caf50;
    background: white;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 64px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(33, 150, 243, 0.3),
        0 0 0 0 rgba(33, 150, 243, 0.5);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(33, 150, 243, 0.4),
        0 0 0 4px rgba(33, 150, 243, 0.2);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .image-section {
        flex: 0 0 auto;
    }

    .circle-image {
        width: 450px;
        height: 300px;
    }

    h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .content-wrapper {
        margin-bottom: 20px;
        gap: 15px;
    }

    .circle-image {
        width: 250px;
        height: 150px;
        box-shadow: 
            0 10px 30px rgba(76, 175, 80, 0.25),
            0 0 0 4px rgba(76, 175, 80, 0.15);
    }

    h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 18px;
    }

    .cta-block {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .cta-text {
        font-size: 15px;
        line-height: 1.4;
        font-weight: 900;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .form-group input {
        font-size: 16px;
        padding: 10px 15px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px;
        margin-top: 10px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .container {
        padding: 15px;
        border-radius: 15px;
    }

    .content-wrapper {
        margin-bottom: 15px;
        gap: 10px;
    }

    .circle-image {
        width: 200px;
        height: 120px;
        box-shadow: 
            0 8px 25px rgba(76, 175, 80, 0.25),
            0 0 0 3px rgba(76, 175, 80, 0.15);
    }

    h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 16px;
    }

    .cta-block {
        padding: 12px;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 13px;
        font-weight: 900;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .form-group input {
        font-size: 14px;
        padding: 8px 12px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 390px) and (max-height: 844px) {
    body {
        padding: 3px;
    }

    .container {
        padding: 12px;
        border-radius: 12px;
        max-height: 95vh;
        overflow: hidden;
    }

    .content-wrapper {
        margin-bottom: 10px;
        gap: 8px;
    }

    .circle-image {
        width: 170px;
        height: 100px;
        box-shadow: 
            0 6px 20px rgba(76, 175, 80, 0.25),
            0 0 0 2px rgba(76, 175, 80, 0.15);
    }

    h1 {
        font-size: 18px;
        line-height: 1.1;
    }

    .subtitle {
        font-size: 14px;
    }

    .cta-block {
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .cta-text {
        font-size: 12px;
        line-height: 1.3;
        font-weight: 900;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .form-group input {
        font-size: 13px;
        padding: 6px 10px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 8px;
        margin-top: 5px;
    }
}

