* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
}

.header {
    background-color: #1a1a1a;
}

.about-hero {
    background-color: #1a1a1a;
    position: relative;
    padding: 10px 0 80px;
    overflow: hidden;
    height: 430px;
}
.about-hero-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
    position: relative;
}
.about-hero-left {
    flex: 0 0 900px;
    width: 900px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.about-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 100px;
    margin-bottom: 20px;
    margin-left: 10px;
}
.about-hero-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    flex-wrap: nowrap;
}
.icon-plug {
    flex-shrink: 0;
    width: 115px;
    height: 90px;
}
.icon-plug img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-hero-text {
    font-size: 16px;
    line-height: 30px;
    color: #9E9FA0;
    font-weight: 400;
    margin: 0;
}
.about-hero-right {
    flex: 0 0 300px;
    width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
    padding-bottom: 0;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background-color: #1A1A1A;
    border: 1px solid #313131;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 50px;
    width: 204px;
}
.breadcrumb a {
    color: #9E9FA0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-separator {
    color: #9E9FA0;
}
.breadcrumb-current {
    color: #06BEAF;
}
.about-hero-icon {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.about-hero-icon img {
    width: 120px;
    height: 120px;
    margin-right: -120px;
}
.decoration-circle-about {
    position: absolute;
    border: 2px solid #FFFFFF33;
    border-radius: 50%;
    pointer-events: none;
    width: 760px;
    height: 760px;
    top: -200px;
    right: -200px;
}

.professional-services-section {
    padding: 80px 20px;
    background-color: #1A1A1A;
}

.services-professional-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-pro-header {
    margin-bottom: 60px;
}

.services-pro-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #06BEAF;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

.services-pro-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

.services-pro-title {
    flex: 1;
    max-width: 550px;
}

.services-pro-title h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.services-pro-description {
    flex: 1;
    max-width: 550px;
}

.services-pro-description p {
    font-size: 16px;
    line-height: 30px;
    color: #9E9FA0;
    font-weight: 400;
}

.services-pro-description strong {
    color: #fff;
    font-weight: 600;
}

.services-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-pro-card {
    background-color: #0E0F11;
    border: 1px solid #0E0F11;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-pro-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-pro-icon svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.service-pro-title-card {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    min-height: 60px;
}

.service-pro-text {
    font-size: 15px;
    line-height: 24px;
    color: #9E9FA0;
    font-weight: 400;
}

@media (max-width: 1024px) {

    .about-hero-container {
        width: 100%;
        max-width: 960px;
        padding: 0 40px;
    }
    
    .about-hero-left {
        flex: 0 0 700px;
        width: 700px;
        max-width: 700px;
    }
    
    .about-hero-title {
        font-size: 50px;
        line-height: 80px;
    }
    
    .about-hero-right {
        flex: 0 0 250px;
        width: 250px;
    }
    
    .about-hero-icon {
        width: 250px;
        height: 250px;
    }
    
    .decoration-circle-about {
        width: 650px;
        height: 650px;
        top: -150px;
        right: -150px;
    }
    
    .services-professional-container {
        padding: 0 40px;
    }
    
    .services-pro-title h2 {
        font-size: 44px;
    }
    
    .services-pro-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}


@media (max-width: 768px) {
    .about-hero {
        height: auto;
        padding: 10px 0 60px;
    }
    
    .about-hero-container {
        max-width: 100%;
        padding: 0 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .about-hero-left {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .about-hero-title {
        font-size: 44px;
        line-height: 60px;
        margin-bottom: 30px;
        margin-left: 0;
    }
    
    .about-hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .about-hero-icons {
        gap: 15px;
    }
    
    .icon-plug {
        width: 90px;
        height: 70px;
    }
    
    .about-hero-text {
        font-size: 15px;
        line-height: 26px;
    }
    
    .breadcrumb {
        margin-bottom: 0;
    }
    
    .about-hero-right {
        flex: 1 1 auto;
        width: 100%;
        align-self: flex-end;
        align-items: flex-end;
    }
    
    .about-hero-icon {
        width: 220px;
        height: 220px;
        margin-top: 0;
    }
    
    .about-hero-icon img {
        width: 100px;
        height: 100px;
        margin-right: -100px;
    }
    
    .decoration-circle-about {
        width: 550px;
        height: 550px;
        top: -100px;
        right: -100px;
    }
    
    .professional-services-section {
        padding: 60px 20px;
    }
    
    .services-professional-container {
        padding: 0 30px;
    }
    
    .services-pro-header {
        margin-bottom: 50px;
    }
    
    .services-pro-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .services-pro-title,
    .services-pro-description {
        max-width: 100%;
    }
    
    .services-pro-title h2 {
        font-size: 38px;
    }
    
    .services-pro-description p br {
        display: none;
    }
    
    .services-pro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-pro-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 10px 0 40px;
    }
    
    .about-hero-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .about-hero-title {
        font-size: 36px;
        line-height: 50px;
        margin-bottom: 25px;
    }
    
    .about-hero-bottom-row {
        gap: 20px;
    }
    
    .about-hero-icons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .icon-plug {
        width: 80px;
        height: 60px;
    }
    
    .about-hero-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .about-hero-text br {
        display: none;
    }
    
    .breadcrumb {
        padding: 10px 24px;
        font-size: 14px;
        width: auto;
        gap: 12px;
    }
    
    .about-hero-icon {
        width: 180px;
        height: 180px;
    }
    
    .about-hero-icon img {
        width: 80px;
        height: 80px;
        margin-right: -80px;
    }
    
    .decoration-circle-about {
        width: 450px;
        height: 450px;
        top: -80px;
        right: -80px;
    }

    .professional-services-section {
        padding: 50px 15px;
    }
    
    .services-professional-container {
        padding: 0 20px;
    }
    
    .services-pro-header {
        margin-bottom: 40px;
    }
    
    .services-pro-badge {
        font-size: 14px;
        padding: 6px 14px;
        margin-bottom: 25px;
    }
    
    .services-pro-top {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .services-pro-title h2 {
        font-size: 32px;
    }
    
    .services-pro-description p {
        font-size: 15px;
        line-height: 26px;
    }
    
    .services-pro-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-pro-card {
        padding: 30px 20px;
        gap: 15px;
    }
    
    .service-pro-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-pro-icon img {
        width: 50px;
        height: 50px;
    }
    
    .service-pro-title-card {
        font-size: 18px;
        min-height: auto;
    }
    
    .service-pro-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 375px) {
    .about-hero-container {
        padding: 0 15px;
    }
    
    .about-hero-title {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 20px;
    }
    
    .icon-plug {
        width: 70px;
        height: 55px;
    }
    
    .about-hero-text {
        font-size: 13px;
        line-height: 22px;
    }
    
    .breadcrumb {
        padding: 8px 20px;
        font-size: 13px;
        gap: 10px;
    }
    
    .about-hero-icon {
        width: 150px;
        height: 150px;
    }
    
    .about-hero-icon img {
        width: 70px;
        height: 70px;
        margin-right: -70px;
    }
    
    .decoration-circle-about {
        width: 400px;
        height: 400px;
        top: -60px;
        right: -60px;
    }
    

    .professional-services-section {
        padding: 40px 10px;
    }
    
    .services-professional-container {
        padding: 0 15px;
    }
    
    .services-pro-header {
        margin-bottom: 35px;
    }
    
    .services-pro-badge {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .services-pro-top {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .services-pro-title h2 {
        font-size: 28px;
    }
    
    .services-pro-description p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .service-pro-card {
        padding: 25px 15px;
    }
    
    .service-pro-title-card {
        font-size: 17px;
    }
    
    .service-pro-text {
        font-size: 13px;
        line-height: 20px;
    }
}