/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('./images/heroDesktopBg.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}

.hero-line-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 208px;
    height: 1px;
    background: linear-gradient(to right, #FEFEFE, transparent);
    opacity: 0.6;
}

.hero-line-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 208px;
    height: 1px;
    background: linear-gradient(to left, #FEFEFE, transparent);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.hero-text {
    flex: 1;
    max-width: 512px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-main {
    color: #FFB713;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
    font-family: 'Barlow', sans-serif;
}

.hero-title-sub {
    color: white;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Barlow', sans-serif;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Barlow', sans-serif;
}

.hero-ornament {
    flex-shrink: 0;
    width: 384px;
    height: 100%;
    position: relative;
    display: none;
}