.plans-section {
    padding: 20px 0 60px;
    background-color: #ffffff;
}

.plans-container {
    width: 1200px;
    margin: 30px auto 0;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.plan-card {
    width: 380px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.plan-card:nth-child(1) {
    animation-delay: 0.4s;
}

.plan-card:nth-child(2) {
    animation-delay: 0.5s;
}

.plan-card:nth-child(3) {
    animation-delay: 0.6s;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-icon {
    width: 120px;
    height: 120px;
    margin: 30px auto 20px;
}

.plan-name {
    text-align: center;
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.plan-price {
    text-align: center;
    margin-bottom: 20px;
}

.plan-currency {
    font-size: 20px;
    color: #FF6B00;
    font-weight: 600;
}

.plan-amount {
    font-size: 40px;
    color: #FF5722;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(255, 87, 34, 0.2);
}

.plan-period {
    font-size: 21px;
    color: #FF6B00;
    font-weight: 500;
}

.plan-divider {
    width: 380px;
    height: 1px;
    background-color: #dddddd;
    margin: 20px 0;
}

.plan-desc {
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    color: #999999;
    line-height: 180%;
    margin-bottom: 30px;
}

.plan-features {
    padding: 0 40px;
    text-align: center;
}

.plan-feature {
    font-size: 15px;
    color: #434343;
    line-height: 200%;
}

.plan-btn {
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 40px auto 40px;
    background-color: rgba(66, 92, 187, 1);
    color: #ffffff;
    font-size: 15px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.plan-btn:hover {
    background-color: rgba(60, 120, 216, 1);
}

.services-section {
    padding: 40px 0 60px;
    background-color: #f8f8f8;
}

.services-grid {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.service-item:hover .service-icon {
    transform: rotateY(360deg);
}

.service-title {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-desc {
    font-size: 14px;
    color: #666666;
    line-height: 180%;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: rgb(66, 92, 187);
    font-size: 14px;
    transition: color 0.3s;
}

.service-link:hover {
    color: rgba(60, 120, 216, 1);
}

.cases-section {
    padding: 40px 0 60px;
    background-color: #ffffff;
}

.cases-grid {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-item {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-item:hover .case-img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.case-item:hover .case-overlay {
    transform: translateY(0);
}

.case-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
}

.case-category {
    font-size: 14px;
    color: #dddddd;
}

.news-section {
    padding: 40px 0 60px;
    background-color: #f8f8f8;
}

.news-grid {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.news-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 180%;
    margin-bottom: 15px;
}

.news-more {
    color: rgb(66, 92, 187);
    font-size: 14px;
    transition: color 0.3s;
}

.news-more:hover {
    color: rgba(60, 120, 216, 1);
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 28px;
    color: rgb(66, 92, 187);
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 25px 30px;
}

.faq-answer p {
    font-size: 15px;
    color: #666666;
    line-height: 180%;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.faq-answer ul li {
    font-size: 14px;
    color: #666666;
    line-height: 200%;
    padding-left: 20px;
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgb(66, 92, 187);
    font-weight: bold;
}

.faq-answer ul li strong {
    color: #333333;
}

.clients-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.clients-grid {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.client-logo {
    width: 100%;
    height: 80px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

.logo-loop-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.logo-loop-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-loop-container::before,
.logo-loop-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-loop-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.logo-loop-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.logo-loop-track {
    display: flex;
    gap: 80px;
    animation: logoScroll 30s linear infinite;
    width: max-content;
}

.logo-loop-track:hover {
    animation-play-state: paused;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-loop-item {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.logo-loop-item:hover {
    transform: scale(1.1);
}

.logo-loop-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.logo-loop-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


.about-full-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-full-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-full-left {
    padding-right: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.about-full-heading {
    font-size: 25px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-full-content p {
    font-size: 16px;
    color: #666666;
    line-height: 200%;
    margin-bottom: 20px;
}

.about-full-values {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.about-value-item:nth-child(1) {
    animation-delay: 0.5s;
}

.about-value-item:nth-child(2) {
    animation-delay: 0.6s;
}

.about-value-item:nth-child(3) {
    animation-delay: 0.7s;
}

.about-value-item img {
    width: 60px;
    height: 60px;
}

.about-value-item span {
    font-size: 14px;
    color: #333333;
    text-align: center;
}

.about-full-right {
    position: relative;
    height: 600px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.stack-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    overflow: hidden;
}

.stack-item {
    position: absolute;
    width: 380px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stack-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(0) scale(1);
    z-index: 4;
}

.stack-item:nth-child(2) {
    top: 20px;
    left: calc(50% + 60px);
    transform: translateX(-50%) translateZ(-50px) scale(0.92);
    z-index: 3;
    opacity: 0.85;
}

.stack-item:nth-child(3) {
    top: 40px;
    left: calc(50% + 120px);
    transform: translateX(-50%) translateZ(-100px) scale(0.84);
    z-index: 2;
    opacity: 0.7;
}

.stack-item:nth-child(4) {
    top: 60px;
    left: calc(50% + 180px);
    transform: translateX(-50%) translateZ(-150px) scale(0.76);
    z-index: 1;
    opacity: 0.55;
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.stack-item:hover .stack-overlay {
    opacity: 1;
}

.stack-overlay p {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.cases-full-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.cases-full-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 120px;
    align-items: center;
}

.cases-full-left {
    padding-right: 20px;
}

.cases-full-heading {
    font-size: 36px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 25px;
}

.cases-full-desc {
    font-size: 16px;
    color: #666666;
    line-height: 200%;
    margin-bottom: 40px;
}

.cases-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-stat {
    text-align: center;
}

.case-stat h3 {
    font-size: 42px;
    color: rgb(66, 92, 187);
    font-weight: bold;
    margin-bottom: 10px;
}

.case-stat p {
    font-size: 14px;
    color: #666666;
}

.cases-full-right {
    position: relative;
    height: 550px;
}

.depth-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-card {
    position: absolute;
    width: 500px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel-card.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    z-index: 5;
}

.carousel-card.prev {
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%) translateZ(-200px) rotateY(35deg) scale(0.75);
    z-index: 3;
    opacity: 0.6;
}

.carousel-card.next {
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%) translateZ(-200px) rotateY(-35deg) scale(0.75);
    z-index: 3;
    opacity: 0.6;
}

.carousel-card.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.carousel-card.active:hover .carousel-info {
    transform: translateY(0);
}

.carousel-info h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.carousel-info p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.6;
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 28px;
    color: rgb(66, 92, 187);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: rgb(66, 92, 187);
    color: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 1200px) {

    .container,
    .header-content,
    .hero-content,
    .about-content,
    .stats-content,
    .plans-container,
    .services-grid,
    .cases-grid,
    .news-grid,
    .clients-grid,
    .footer-content,
    .footer-bottom {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 450px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
    }

    .hero-title {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        font-size: 20px;
        margin-bottom: 10px;
        letter-spacing: 1.5px;
    }

    .hero-desc {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        font-size: 12px;
        line-height: 170%;
    }

    .hero-btn {
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translateX(-50%);
        width: 130px;
        height: 40px;
        line-height: 40px;
        font-size: 13px;
    }

    .hero-scroll-icon {
        bottom: 25px;
        width: 36px;
        height: 36px;
    }

    .title-section {
        padding: 25px 15px 8px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 6px;
        padding: 25px 0 0;
    }

    .section-subtitle {
        font-size: 12px;
        padding-bottom: 12px;
    }

    .about-full-section {
        padding: 25px 0;
    }

    .about-full-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .about-full-left {
        padding-right: 0 !important;
    }

    .about-full-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .about-full-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .about-full-values {
        gap: 12px;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-value-item {
        gap: 6px;
    }

    .about-value-item img {
        width: 45px;
        height: 45px;
    }

    .about-value-item span {
        font-size: 11px;
    }

    .about-full-right {
        height: 350px;
    }

    .stack-container {
        perspective: 900px;
    }

    .stack-item {
        width: 260px;
        height: 320px;
    }

    .stack-item:nth-child(1) {
        top: 0;
        left: 50%;
        transform: translateX(-50%) translateZ(0) scale(1);
    }

    .stack-item:nth-child(2) {
        top: 12px;
        left: calc(50% + 35px);
        transform: translateX(-50%) translateZ(-25px) scale(0.94);
    }

    .stack-item:nth-child(3) {
        top: 24px;
        left: calc(50% + 70px);
        transform: translateX(-50%) translateZ(-50px) scale(0.88);
    }

    .stack-item:nth-child(4) {
        top: 36px;
        left: calc(50% + 105px);
        transform: translateX(-50%) translateZ(-75px) scale(0.82);
    }

    .stack-overlay {
        padding: 12px;
    }

    .stack-overlay p {
        font-size: 13px;
    }

    .plans-section {
        padding: 12px 0 25px;
    }

    .plans-container {
        width: 100%;
        flex-direction: column;
        padding: 0 15px;
        gap: 15px;
    }

    .plan-card {
        width: 100%;
        margin-bottom: 12px;
    }

    .plan-icon {
        width: 60px;
        height: 60px;
        margin: 12px auto 10px;
    }

    .plan-name {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .plan-price {
        margin-bottom: 12px;
    }

    .plan-currency {
        font-size: 14px;
    }

    .plan-amount {
        font-size: 24px;
    }

    .plan-period {
        font-size: 14px;
    }

    .plan-divider {
        width: 100%;
        margin: 10px 0;
    }

    .plan-desc {
        padding: 0 15px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .plan-features {
        padding: 0 15px;
    }

    .plan-feature {
        font-size: 12px;
    }

    .plan-btn {
        width: 90px;
        height: 32px;
        line-height: 32px;
        margin: 20px auto;
        font-size: 13px;
    }

    .services-section {
        padding: 20px 0 25px;
    }

    .services-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .service-item {
        padding: 15px 12px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .service-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .service-desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .service-link {
        margin-top: 10px;
        font-size: 12px;
    }

    .cases-full-section {
        padding: 25px 0;
        overflow: hidden;
    }

    .cases-full-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        max-width: 100%;
        overflow: hidden;
    }

    .cases-full-left {
        padding-right: 0 !important;
    }

    .cases-full-heading {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .cases-full-desc {
        font-size: 13px;
        line-height: 170%;
        margin-bottom: 20px;
    }

    .cases-stats {
        gap: 12px;
    }

    .case-stat h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .case-stat p {
        font-size: 12px;
    }

    .cases-full-right {
        height: 300px;
    }

    .depth-carousel {
        height: 300px;
        perspective: 900px;
    }

    .carousel-card {
        width: 260px;
        height: 200px;
    }

    .carousel-card.active {
        transform: translate(-50%, -50%) translateZ(0) scale(1);
    }

    .carousel-card.prev {
        left: 5%;
        transform: translate(-50%, -50%) translateZ(-80px) rotateY(20deg) scale(0.7);
    }

    .carousel-card.next {
        left: 95%;
        transform: translate(-50%, -50%) translateZ(-80px) rotateY(-20deg) scale(0.7);
    }

    .carousel-info {
        padding: 10px;
    }

    .carousel-info h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .carousel-info p {
        font-size: 11px;
    }

    .carousel-nav {
        bottom: 12px;
        gap: 10px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .faq-section {
        padding: 25px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .faq-item {
        border-radius: 5px;
    }

    .faq-question {
        padding: 12px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
        margin-left: 6px;
    }

    .faq-answer {
        padding: 0 12px;
    }

    .faq-item.active .faq-answer {
        padding: 12px;
    }

    .faq-answer p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .faq-answer ul {
        margin-bottom: 10px;
    }

    .faq-answer ul li {
        font-size: 12px;
        line-height: 170%;
    }

    .news-section {
        padding: 25px 0;
    }

    .news-grid {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 15px;
    }

    .news-item {
        margin-bottom: 0;
    }

    .news-img {
        height: 160px;
    }

    .news-content {
        padding: 12px;
    }

    .news-date {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .news-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .news-excerpt {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .news-more {
        font-size: 12px;
    }

    .contact-section {
        padding: 25px 0;
    }

    .contact-container {
        width: 100%;
        padding: 0 15px;
    }

    .contact-form-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .form-input,
    .form-textarea {
        padding: 8px 10px;
        font-size: 13px;
    }

    .form-textarea {
        min-height: 80px;
    }

    .form-submit {
        padding: 10px;
        font-size: 13px;
    }

    .clients-section {
        padding: 25px 0;
    }

    .clients-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .client-logo {
        height: 50px;
    }

    .logo-loop-section {
        padding: 25px 0;
    }

    .logo-loop-track {
        gap: 25px;
    }

    .logo-loop-item {
        width: 100px;
        height: 50px;
    }
}
