        .contact {
            max-width: 1300px;
            margin: 0 auto;
            /* padding: 150px 16px; */
                padding-top: 130px;
    padding-bottom: 30px;
        }

        .contact__header {
            text-align: center;
            margin-bottom: 48px;
        }

        .contact__title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #000000;
            margin-bottom: 16px;
        }

        .contact__subtitle {
            color: #717171;
            font-size: 1.125rem;
        }

        .contact__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .contact__content {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* Contact Information Card */
        .contact__info {
            background-color: #000000;
            border-radius: 16px;
            padding: 32px;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 460px;
        }

        .contact__info-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .contact__info-subtitle {
            color: #c9c9c9;
            margin-bottom: 32px;
        }

        .contact__details {
            margin-bottom: 64px;
        }

        .contact__item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact__item-icon {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .contact__social {
            display: flex;
            gap: 16px;
            position: relative;
            z-index: 10;
        }

        .contact__social-icon {
            width: 32px;
            height: 32px;
            background-color: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .contact__social-icon:hover {
            background-color: #484848;
        }

        .contact__social-icon svg {
            width: 16px;
            height: 16px;
        }

        .contact__decorative-circle {
            position: absolute;
            bottom: -32px;
            right: -32px;
            width: 128px;
            height: 128px;
            background-color: #484848;
            border-radius: 50%;
            opacity: 0.5;
        }

        /* Contact Form */
        .contact__form {
            padding: 0 16px;
        }

        .contact__form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        @media (max-width: 768px) {
            .contact__form-row {
                grid-template-columns: 1fr;
            }
        }

        .contact__form-group {
            margin-bottom: 24px;
        }

        .contact__form-label {
            display: block;
            color: #717171;
            font-size: 0.875rem;
            margin-bottom: 8px;
        }

        .contact__form-group--subject .contact__form-label {
            color: #000000;
            font-weight: 500;
            font-size: 1rem;
        }

        .contact__form-input {
            width: 100%;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            background: transparent;
            padding: 8px 0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .contact__form-input:focus {
            border-bottom-color: #000000;
        }

        .contact__form-input::placeholder {
            color: #c9c9c9;
        }

        .contact__form-textarea {
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
        }

        /* Radio Group */
        .contact__radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 16px;
        }

        .contact__radio-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact__radio-input {
            width: 16px;
            height: 16px;
            border: 2px solid #c9c9c9;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
        }

        .contact__radio-input--selected {
            border-color: #000000;
        }

        .contact__radio-input--selected::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background-color: #000000;
            border-radius: 50%;
        }

        .contact__radio-label {
            color: #717171;
            font-size: 0.875rem;
            cursor: pointer;
        }

        /* Submit Button */
        .contact__submit {
            display: flex;
            justify-content: flex-end;
            padding-top: 16px;
        }

        .contact__submit-btn {
            background-color: #000000;
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .contact__submit-btn:hover {
            background-color: #1a1a1a;
        }