/* 프리텐다드 폰트 import */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 헤더 스타일 */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.logo img {
    height: 70px;
    width: auto;
}

.right-section {
    display: flex;
    align-items: center;
}

.contact-link {
    padding: 12px 25px;
    background-color: #222;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.contact-link:hover {
    background-color: #000;
}

/* 슬라이더 섹션 스타일 */

.swiper-container {
    width: 100%;
    height: 100%;
	position: relative;
}

.swiper-wrapper {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 네비게이션 화살표 가시성 보장 */
.swiper-button-next,
.swiper-button-prev {
    color: white;
}

/* 페이지네이션 점 */
.swiper-pagination-bullet {
    background-color: white;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slides-wrapper {
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider-section {
    width: 100%;
    margin-top: 90px;
    height: calc(100vh - 90px);
    position: relative;
    overflow: hidden;
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 슬라이더 네비게이션 버튼 */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    padding: 2rem;
    border: none;
    cursor: pointer;
    font-size: 3rem;
    z-index: 2;
    transition: opacity 0.3s;
}

.arrow:hover {
    opacity: 0.8;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* 슬라이더 도트 인디케이터 */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}

/* About Us 섹션 스타일 */
.about-section {
    padding: 50px 0;
    background-color: #fff;
}

.pb-2 border-bottom {
    text-align: center;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
}

.about-title-container {
    text-align: center;
    padding-top: 20px;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-title-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.rounded-background {
    width: auto;
    background-color: #40bda8;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    position: relative;
    padding: 20px 50px;
}

.section-description {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}

/* Features 섹션 스타일 */
.features-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.features-container {
    max-width: 1200px; /* 최대 너비 설정 */
    margin: 0 auto; /* 가운데 정렬 */
    padding: 0 20px; /* 좌우 패딩 */
    display: flex; /* 자식 요소들을 Flex Items로 만듦 */
    flex-direction: row; /* 자식 요소들을 가로(좌우)로 배치 (기본값이지만 명시) */
    gap: 40px; /* 좌우 컬럼 사이의 간격 */
    flex-wrap: wrap; /* 화면이 줄어들면 컬럼이 아래로 떨어지도록 설정 */
    align-items: flex-start; /* 자식 컬럼의 상단을 맞춤 */
    text-align: center;
}

.left-column {
    flex: 1.25; /* 사용 가능한 공간의 1/3 정도를 차지 (예시) */
    width: 50%; /* 컬럼의 최소 너비 설정 (너무 좁아지지 않게) */
    display: flex; /* 왼쪽 컬럼 안의 이미지들을 세로로 배치하기 위해 Flex 사용 */
    flex-direction: column; /* 이미지를 세로로 쌓음 */
    gap: 20px; /* 이미지 사이 간격 */
}

.left-column img {
    display: flex;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.right-column {
    flex: 2; /* 사용 가능한 공간의 2/3 정도를 차지 (예시: 왼쪽의 2배) */
    width: 50%; /* 컬럼의 최소 너비 설정 */
}

.features-title-container {
    position: relative;
    padding-top: 20px;
    margin-left: 20px;
}
.features-title-container h2 {
    text-align: left;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.features-title-container .title-dot {
    width: 12px;
    height: 12px;
    background-color: #40bda8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.features-title-container .section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.features-section .section-description-container {
    width: 60%;
    margin-left: 20%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.features-section .content-img {
    width: 40%;
    height: 275px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.feature-box {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-radius: 10px;
    text-align: left;
}

.features-section .feature-box h3 {
    color: #40bda8;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.features-section .feature-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Features 섹션 반응형 디자인 */
@media (max-width: 768px) {
    .features-section .section-description-container {
        flex-direction: column;
        width: 90%;
        margin-left: 5%;
    }

    .features-section .content-img {
        width: 100%;
        margin-bottom: 30px;
    }

    .features-section .features-grid {
        width: 100%;
    }
}

/* Footer 스타일 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 0;
}

.footer-content {
    display: flex;
    max-width: 1400px;
    max-height: 500px;
    margin: 0 auto;
    padding: 60px 20px;
}

.footer-info {
    flex: 1;
    padding-left: 40px;
}

.footer-info h2 {
    color: #40bda8;
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info {
	width: 500px;
	
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    color: #40bda8;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item p {
    color: #fff;
    font-size: 1rem;
}

.map-container {
    flex: 1;
    max-height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.footer-bottom {
    background-color: #222;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    header {
        height: 80px;
    }

    .logo img {
        height: 50px;
    }

    .container {
        padding: 0 15px;
    }

    .logo {
        gap: 10px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content p br {
        display: none;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.2rem;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        height: auto;
    }

    .feature-item {
        max-width: 100%;
        padding: 0 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .features-grid {
        width: 90%;
        margin: 0 5%;
        gap: 20px;
        padding: 0 15px;
    }

    .feature-box {
        padding: 30px;
    }

    .feature-box h3 {
        font-size: 1.5rem;
    }

    .feature-box p {
        font-size: 1rem;
    }

    .features-header {
        text-align: center;
    }

    .features-header .title-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .features-header .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .features-header .section-description {
        font-size: 1rem;
        text-align: center;
    }

    .slide::before {
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .slide img {
        opacity: 0.7;
    }

    .content-img {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .footer-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .map-container {
        min-height: 300px;
    }

    #map {
        min-height: 300px;
    }

    .features-section .section-description-container {
        flex-direction: column;
        width: 90%;
        margin-left: 5%;
    }
}

/* 비즈니스 섹션 스타일 */
.business-section {
    padding: 50px 0;
    background-color: #fff;
}

.business-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-title-container{
    position: relative;
    padding-top: 20px;
}

.business-title-container .title-dot {
    width: 12px;
    height: 12px;
    background-color: #40bda8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.business-title-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.business-title-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    width: 100%;
    max-width: 1145px;
    margin: 0 auto;
}

.business-item {
    background: #fff;
    max-width: 530px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.business-image {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.business-text-container {
    margin: 0 0 20px 36px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
}

.business-number {
    color: #40bda8;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
}

.business-text-container h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.business-content {
    margin-top: 10px;
}

.business-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .business-section {
        padding: 60px 0;
    }

    .business-container {
        padding: 20px;
    }

    .business-text-container {
        padding: 20px;
    }

    .business-text-container h4 {
        font-size: 1.5rem;
    }

    .business-content p {
        font-size: 1rem;
    }

    .business-header {
        text-align: center;
    }

    .business-header .title-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .business-header .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .business-header .section-description {
        font-size: 1rem;
        text-align: center;
    }
}

/* 회사연혁 섹션 스타일 */
.history-section {
    padding: 100px 0;
    background-color: #fff;
}

.history-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.history-container::before {
    content: '';
    position: absolute;
    left: calc(200px + 20px);
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #40bda8;
}

.history-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.history-item:last-child {
    margin-bottom: 0;
}

.year {
    width: 200px;
    font-size: 2rem;
    font-weight: bold;
    color: #40bda8;
    text-align: right;
    padding-right: 40px;
    flex-shrink: 0;
}

.history-content {
    position: relative;
    padding-left: 40px;
}

.history-dot {
    position: absolute;
    left: -5px;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #40bda8;
    border-radius: 50%;
}

.history-text {
    padding-left: 20px;
}

.history-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* 반응형 디자인 추가 */
@media (max-width: 768px) {
    .history-container::before {
        left: 30px;
    }

    .history-item {
        flex-direction: column;
    }

    .year {
        width: 100%;
        text-align: left;
        padding-left: 60px;
        margin-bottom: 10px;
    }

    .history-content {
        padding-left: 60px;
    }

    .history-dot {
        left: 25px;
    }

    .history-text {
        padding-left: 0;
    }
}

/* R&D 센터 섹션 스타일 */
.rnd-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.rnd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rnd-title-container{
    position: relative;
    padding-top: 20px;
}

.rnd-title-container .title-dot {
    width: 12px;
    height: 12px;
    background-color: #40bda8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.rnd-title-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.rnd-title-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}


.rnd-section .content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.rnd-section .content-item {
    text-align: center;
}

.rnd-section .content-item img {
    max-width: 100%;
    height: auto;
}

/* R&D 섹션 반응형 디자인 */
@media (max-width: 1024px) {
    .rnd-header {
        width: 80%;
        margin-left: 10%;
    }
    
    .rnd-fields {
        flex-wrap: wrap;
        gap: 20px;
    }

    .rnd-field-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .rnd-header {
        width: 90%;
        margin-left: 5%;
        text-align: center;
    }

    .rnd-header .title-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .rnd-header .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .rnd-header .section-description {
        font-size: 1rem;
        text-align: center;
    }

    .rnd-fields {
        flex-direction: column;
        align-items: center;
    }

    .rnd-field-item {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}

.rnd-fields {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
}

.rnd-field-item {
    flex: 1;
    max-width: 400px;
}

.field-number {
    color: #40bda8;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
}

.rnd-field-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: left;
}

.rnd-field-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.rnd-field-item li {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.rnd-field-item li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: #40bda8;
    border-radius: 50%;
}

/* Core Clients 섹션 스타일 */
.clients-section {
    padding: 50px 0;
    background-color: #fff;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.clients-title-container {
    position: relative;
    padding-top: 20px;
}

.clients-title-container .title-dot {
    width: 12px;
    height: 12px;
    background-color: #40bda8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.clients-title-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.clients-title-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.clients-grid-container {
    flex: 1;
    overflow: hidden;
    direction: rtl;
    height: 500px;
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(10, 200px);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
    direction: ltr;
    height: 100%;
    grid-auto-rows: 0;
    grid-auto-flow: row;
    animation: slideLeft 24s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 200px;
    height: 160px;
}

.client-item img {
    max-width: 180px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(4, 200px);
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 200px);
    }

    .clients-title-container h2 {
        font-size: 2rem;
    }

    .clients-title-container p {
        font-size: 1rem;
    }

    .features-section .section-description-container {
        flex-direction: column;
        width: 90%;
        margin-left: 5%;
    }

    .content-img {
        width: 100%;
        margin-bottom: 30px;
    }

    .features-grid {
        width: 100%;
    }
}

/* 주요 인증서 섹션 스타일 */
.certificates-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.certificates-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.certificates-title-container {
    position: relative;
    padding-top: 20px;
}

.certificates-title-container .title-dot {
    width: 12px;
    height: 12px;
    background-color: #40bda8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.certificates-title-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.certificates-title-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.certificate-item {
    text-align: center;
}

.certificate-image {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certificate-text {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .certificates-title-container h2 {
        font-size: 2rem;
    }

    .certificates-title-container p {
        font-size: 1rem;
    }
}

/* 반응형 디자인 - 모든 섹션 헤더 */
@media (max-width: 1024px) {
    .features-header,
    .business-header,
    .rnd-header {
        width: 80%;
        margin-left: 10%;
    }
}

@media (max-width: 768px) {
    .features-header,
    .business-header,
    .rnd-header,
    .clients-title-container,
    .certificates-title-container {
        width: 90%;
        margin-left: 5%;
        text-align: center;
    }

    .features-header .title-dot,
    .business-header .title-dot,
    .rnd-header .title-dot,
    .clients-title-container .title-dot,
    .certificates-title-container .title-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .features-header .section-title,
    .business-header .section-title,
    .rnd-header .section-title,
    .clients-title-container h2,
    .certificates-title-container h2 {
        font-size: 2rem;
        text-align: center;
    }

    .features-header .section-description,
    .business-header .section-description,
    .rnd-header .section-description,
    .clients-title-container p,
    .certificates-title-container p {
        font-size: 1rem;
        text-align: center;
    }

    .features-header br,
    .business-header br,
    .rnd-header br,
    .clients-title-container br,
    .certificates-title-container br {
        display: none;
    }
}
