.aum-hero-standard-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.6;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.aum-hero-standard-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.aum-hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.aum-hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.aum-hero-left-content {
    flex: 1;
    min-width: 0;
}

.aum-hero-right-content {
    flex: 1;
    min-width: 0;
}

.aum-hero-subtitle-box {
    width: fit-content;
}

.aum-hero-subtitle {
    font-size: 16px;
    color: #666;
    letter-spacing: 1px;
    display: block;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.aum-hero-subtitle.has-marker {
    padding-left: 20px;
}

.aum-hero-subtitle.has-marker::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #007cba;
    border-radius: 50%;
    display: block;
    z-index: 1;
}

.aum-hero-subtitle.has-marker::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #007cba;
    opacity: .5;
    border-radius: 50%;
    display: block;
    z-index: 0;
}

.aum-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}

.aum-hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.aum-hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.aum-hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.aum-hero-button1,
.aum-hero-button2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    gap: 10px;
    min-height: 52px;
    line-height: 1;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.aum-hero-button1 {
    background-color: #007cba;
    color: white;
    border-color: #007cba;
}

.aum-hero-button1:hover {
    background-color: #005a87;
    border-color: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}

.aum-hero-button2 {
    background-color: transparent;
}

.aum-hero-button2:hover {
    transform: translateY(-2px);
}

.aum-hero-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    width: 1em;
    height: 1em;
}

.aum-hero-button-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

.aum-hero-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.aum-hero-features {
    width: fit-content;
    padding: 0;
    border: none;
    border-radius: 0;
    display: block;
}

.aum-hero-features.layout-horizontal {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.aum-hero-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
    position: relative;
    padding-left: 0;
    flex-shrink: 0;
}

.aum-hero-features.layout-horizontal .aum-hero-feature-item {
    margin-bottom: 0;
    flex: 0 0 auto;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.aum-hero-feature-icon {
    color: #007cba;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
}

.aum-hero-feature-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

.aum-hero-feature-content {
    flex: 1;
}

.aum-hero-feature-title {
    font-weight: 400;
    color: #333;
}

.aum-hero-feature-title.has-marker {
    position: relative;
    padding-left: calc(var(--aum-feature-marker-gap, 10px) + var(--aum-feature-marker-size, 10px) * 2);
}

.aum-hero-feature-title.has-marker::before {
    content: '';
    position: absolute;
    left: calc(var(--aum-feature-marker-size, 10px) / 2);
    top: 50%;
    transform: translateY(-50%);
    width: var(--aum-feature-marker-size, 10px);
    height: var(--aum-feature-marker-size, 10px);
    background-color: var(--aum-feature-marker-color, #007cba);
    border-radius: 50%;
    z-index: 1;
}

.aum-hero-feature-title.has-marker::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(var(--aum-feature-marker-size, 10px) * 2);
    height: calc(var(--aum-feature-marker-size, 10px) * 2);
    background-color: var(--aum-feature-marker-color, #007cba);
    opacity: .5;
    border-radius: 50%;
    z-index: 0;
}

.aum-hero-feature-description {
    font-size: 15px;
    color: #666;
    margin: 0;
    margin-top: 8px;
    line-height: 1.5;
}

.aum-hero-right-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.aum-hero-right-text {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.aum-hero-right-text h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.aum-hero-right-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.aum-hero-right-text li {
    margin-bottom: 8px;
}

.aum-hero-buttons {
    align-items: center;
}

.aum-hero-left-content[style*="text-align: center"] .aum-hero-subtitle-box,
.aum-hero-left-content[style*="text-align:center"] .aum-hero-subtitle-box {
    margin-left: auto;
    margin-right: auto;
}

.aum-hero-left-content[style*="text-align: center"] .aum-hero-actions,
.aum-hero-left-content[style*="text-align:center"] .aum-hero-actions {
    justify-content: center;
}

.aum-hero-left-content[style*="text-align: center"] .aum-hero-features.layout-horizontal,
.aum-hero-left-content[style*="text-align:center"] .aum-hero-features.layout-horizontal {
    justify-content: center;
}

@media (max-width: 1024px) {
    .aum-hero-standard-wrapper {
        gap: 40px;
    }

    .aum-hero-title {
        font-size: 36px;
    }

    .aum-hero-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .aum-hero-standard-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .aum-hero-title {
        font-size: 32px;
    }

    .aum-hero-right-content {
        width: 100%;
    }

}

@media (max-width: 480px) {
    .aum-hero-standard-wrapper {
        padding: 48px 20px;
    }

    .aum-hero-title {
        font-size: 28px;
    }

    .aum-hero-description {
        font-size: 16px;
    }

    .aum-hero-button1,
    .aum-hero-button2 {
        padding: 12px 24px;
        font-size: 15px;
    }
}