.acmoney-page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #1A0F0A 0%, #2D1A0F 30%, #3D2415 60%, #2D1A0F 100%);
    position: relative;
    overflow: hidden;
}

.acmoney-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(254, 131, 37, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.acmoney-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.acmoney-page-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 24px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE5D4 50%, #FFD4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.acmoney-page-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.acmoney-contact-main {
    padding: 100px 0;
    background: #FFFFFF;
}

.acmoney-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.acmoney-contact-info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.acmoney-contact-info-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.acmoney-contact-info-icon {
    font-size: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(254, 131, 37, 0.1) 0%, rgba(255, 157, 77, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acmoney-contact-info-content {
    flex: 1;
}

.acmoney-contact-info-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-contact-info-value {
    font-size: 16px;
    color: var(--acmoney-text-light);
    line-height: 1.7;
    margin: 0;
}

.acmoney-contact-form-wrapper {
    background: linear-gradient(135deg, #FAFBFC 0%, #F8F9FF 100%);
    padding: 48px 40px;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
}

.acmoney-contact-form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--acmoney-text-dark);
    line-height: 1.3;
}

.acmoney-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.acmoney-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acmoney-form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--acmoney-text-dark);
}

.acmoney-form-input,
.acmoney-form-textarea {
    padding: 16px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--acmoney-text-dark);
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.acmoney-form-input:focus,
.acmoney-form-textarea:focus {
    outline: none;
    border-color: var(--acmoney-primary);
    box-shadow: 0 0 0 3px rgba(254, 131, 37, 0.1);
}

.acmoney-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.acmoney-form-submit {
    width: 100%;
    margin-top: 8px;
}

.acmoney-contact-map {
    padding: 100px 0;
    background: #FAFBFC;
}

.acmoney-map-wrapper {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.acmoney-map-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .acmoney-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .acmoney-page-hero {
        padding: 120px 0 60px;
    }

    .acmoney-page-hero-title {
        font-size: 36px;
    }

    .acmoney-page-hero-subtitle {
        font-size: 18px;
    }

    .acmoney-contact-main,
    .acmoney-contact-map {
        padding: 60px 0;
    }

    .acmoney-contact-info-title,
    .acmoney-contact-form-title {
        font-size: 28px;
    }

    .acmoney-contact-form-wrapper {
        padding: 32px 24px;
    }
}

