.hero-section {
    /* background-color: #8a7a63; */
    background-image: url("../imgs/about-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section hr {
    border-top: 3px solid white;
    opacity: 1;
}

.hero-section .ab-img {
    text-align: center;
}

.content-section {
    background-color: #f5e1b0;
    padding: 50px 0;
}

.tab-section {
    margin: 30px 0;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.custom-tab {
    background-color: transparent;
    color: #000;
    padding: 10px 20px;
    border-radius: 3px;
    border: 1px solid #CAC4C4;
}

.custom-tab:hover {
    color: #fefefe;
}

.custom-tab.active {
    background-color: #c28e4b;
    color: white;
    font-weight: bold;
    border: 1px solid #c28e4b;
}

.custom-tab:hover:not(.active) {
    background-color: #c9975a;
}

.browser-mockup {
    position: relative;
    background-color: #e6c89a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.browser-header {
    height: 15px;
    background-color: #d5a76b;
    border-radius: 4px;
    margin-bottom: 10px;
}

.profile-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #d5a76b;
    display: inline-block;
    overflow: hidden;
}

.browser-stack {
    position: relative;
    height: 200px;
}

.browser-mockup:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.browser-mockup:nth-child(2) {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

.shadow-element {
    height: 20px;
    width: 200px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    margin: 0 auto;
}

#contact {
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 40px;
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(102, 74, 36, 0.70) 0%, rgba(102, 74, 36, 0.70) 100%), url("../imgs/contact-bg.svg") lightgray 50% / cover no-repeat;
    backdrop-filter: blur(40px);
}