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

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9F9F9;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    height: 100vh;
    position: relative;
}

.background-vector {
    position: absolute;
    left: 0;
}

.background-vector img {
    width: 800px;
    height: 800px;
    filter: blur(200px);
    opacity: 0.6;
}

.left-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
    position: relative;
    z-index: 1;
}

.content-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #3A3A3A;
    margin-bottom: 20px;
}

.main-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #666666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #5e0da3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #3A3A3A;
    margin-bottom: 8px;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

.contact-info {
    border-top: 1px solid #E5E5E5;
    padding-top: 30px;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 8px;
}

.phone-number {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

.phone-highlight {
    color: #5e0da3;
    font-weight: 600;
}

.right-content {
    width: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.contact-card {
    width: 520px;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
    color: #3A3A3A;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #666666;
    margin-bottom: 8px;
}

.form-input {
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #3A3A3A;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #5e0da3;
}

.form-input::placeholder {
    color: #999999;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.contact-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #5e0da3 0%, #7B2CBF 100%);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 30px rgba(94, 13, 163, 0.3);
}

.contact-button:active {
    transform: translateY(0);
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.error-text {
    color: #c33;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Responsive Design */
@media (max-width: 920px) {
    body {
        overflow: auto;
    }

    .container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .left-content {
        padding: 40px 20px;
        justify-content: center;
        text-align: center;
    }

    .right-content {
        width: 100%;
        padding: 20px;
    }

    .contact-card {
        width: 100%;
        max-width: 520px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .main-title {
        font-size: 28px;
        line-height: 42px;
    }

    .features-grid {
        margin-bottom: 30px;
    }

    .feature-item {
        justify-content: center;
        text-align: left;
    }
}

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

    .right-content {
        padding: 15px;
    }

    .contact-card {
        padding: 30px 20px;
        max-width: 100%;
    }

    .main-title {
        font-size: 24px;
        line-height: 36px;
    }

    .main-description {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-title {
        font-size: 24px;
        line-height: 36px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 16px;
    }
}