:root {
    --primary-color: #2871ff;
    --background-light: #F8FBFF;
    --background-white: #fff;
    --heading-color: #010e22;
    --text-color: #616161;
    --footer-bg: #2871FF;
    --service-bg-1: #EFFCF9;
    --service-bg-2: #FFFAF2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cabin', sans-serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.sc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sc-btn:hover {
    background-color: #1a5de0;
    transform: translateY(-2px);
}

.sc-btn i {
    margin-left: 8px;
    font-size: 14px;
}


.sc-header {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.sc-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.sc-logo {
    font-family: 'Cabin', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.sc-nav {
    display: flex;
    align-items: center;
}

.sc-nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.sc-nav-item {
    margin: 0 15px;
}

.sc-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.sc-nav-link:hover {
    color: var(--primary-color);
}

.sc-mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
}


.sc-hero {
    padding: 200px 0 120px;
    background: url('../images/slide.jpg') left top no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.sc-hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.sc-hero-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.sc-hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sc-hero-text {
    margin-bottom: 30px;
    font-size: 18px;
    color: #111;
}


.sc-about {
    padding: 100px 0;
}

.sc-about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sc-about-content {
    flex: 1;
}

.sc-about-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.sc-about-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.sc-about-text {
    margin-bottom: 25px;
}

.sc-about-list {
    margin-bottom: 30px;
    padding-left: 10px;
}

.sc-about-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sc-about-list-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.sc-about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sc-about-image img {
    width: 100%;
    height: auto;
    display: block;
}


.sc-features {
    padding: 100px 0;
    background-color: var(--background-light);
}

.sc-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.sc-section-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.sc-section-heading {
    font-size: 36px;
}

.sc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sc-feature-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.sc-feature-card:hover {
    transform: translateY(-10px);
}

.sc-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(40, 113, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.sc-feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}


.sc-services {
    padding: 100px 0;
}

.sc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sc-service-card {
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sc-service-card:nth-child(odd) {
    background-color: var(--service-bg-1);
}

.sc-service-card:nth-child(even) {
    background-color: var(--service-bg-2);
}

.sc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sc-service-icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--primary-color);
}

.sc-service-icon img {
    width: 65px;
}

.sc-service-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.sc-service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}

.sc-service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sc-service-link:hover i {
    transform: translateX(5px);
}


.sc-blog {
    padding: 100px 0;
    background-color: var(--background-light);
}

.sc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sc-blog-card {
    background-color: var(--background-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sc-blog-card:hover {
    transform: translateY(-5px);
}

.sc-blog-image {
    height: 200px;
    overflow: hidden;
}

.sc-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sc-blog-card:hover .sc-blog-image img {
    transform: scale(1.05);
}

.sc-blog-content {
    padding: 25px;
}

.sc-blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
}

.sc-blog-meta span {
    margin-right: 15px;
}

.sc-blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.sc-blog-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.sc-blog-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-blog-title a:hover {
    color: var(--primary-color);
}

.sc-cta-block {
    background: url('../images/quote-bg.png') center no-repeat;
    background-size: cover;
    padding: 60px 20px;
    box-sizing: border-box;
    border-radius: 10px;
}


.sc-cta {
    padding: 80px 0;

    color: white;
    text-align: center;
}

.sc-cta-title {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.sc-cta-text {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.sc-cta-btn {
    background-color: white;
    color: var(--primary-color);
}

.sc-cta-btn:hover {
    background-color: #f0f0f0;
}


.sc-footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 80px 0 0;
}

.sc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.sc-footer-logo {
    font-family: 'Cabin', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.sc-footer-about {
    margin-bottom: 20px;
}

.sc-footer-heading {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.sc-footer-links {
    list-style: none;
}

.sc-footer-link {
    margin-bottom: 10px;
}

.sc-footer-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-footer-link a:hover {
    color: white;
}

.sc-footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.sc-footer-contact-item i {
    margin-right: 10px;
    color: white;
}

.sc-footer-contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.sc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

.sc-footer-legal {
    display: flex;
    flex-wrap: wrap;
}

.sc-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.sc-footer-legal a:hover {
    color: white;
}


.sc-cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.sc-cookie-popup.active {
    transform: translateY(0);
}

.sc-cookie-title {
    margin-bottom: 15px;
    font-size: 18px;
}

.sc-cookie-text {
    margin-bottom: 20px;
    font-size: 14px;
}

.sc-cookie-options {
    margin-bottom: 20px;
}

.sc-cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sc-cookie-option input {
    margin-right: 10px;
}

.sc-cookie-option label {
    font-size: 14px;
}

.sc-cookie-buttons {
    display: flex;
    justify-content: space-between;
}

.sc-cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sc-cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.sc-cookie-btn.reject {
    background-color: #f0f0f0;
    color: var(--text-color);
}

.sc-cookie-btn:hover {
    opacity: 0.9;
}

.sc-page-header {
    padding: 80px 0 80px;
    background-color: var(--background-light);
    text-align: center;
}

.sc-page-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.sc-breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.sc-breadcrumb-item {
    margin: 0 10px;
    font-size: 16px;
}

.sc-breadcrumb-item a {
    color: var(--text-color);
    text-decoration: none;
}

.sc-breadcrumb-item.active {
    color: var(--primary-color);
}

.sc-breadcrumb-item:not(:last-child):after {
    content: ">";
    margin-left: 10px;
}


.sc-about-section {
    padding: 100px 0;
}

.sc-about-section.alternate {
    background-color: var(--background-light);
}

.sc-about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sc-about-content {
    flex: 1;
}

.sc-about-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.sc-about-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.sc-about-text {
    margin-bottom: 25px;
}

.sc-about-list {
    margin-bottom: 30px;
}

.sc-about-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sc-about-list-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.sc-about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sc-about-image img {
    width: 100%;
    height: auto;
    display: block;
}


.sc-stats {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.sc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sc-stat-item {
    text-align: center;
}

.sc-stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-family: 'Cabin', sans-serif;
}

.sc-stat-text {
    font-size: 18px;
}


.sc-footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 80px 0 0;
}

.sc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.sc-footer-logo {
    font-family: 'Cabin', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.sc-footer-about {
    margin-bottom: 20px;
}

.sc-footer-heading {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.sc-footer-links {
    list-style: none;
}

.sc-footer-link {
    margin-bottom: 10px;
}

.sc-footer-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-footer-link a:hover {
    color: white;
}

.sc-footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.sc-footer-contact-item i {
    margin-right: 10px;
    color: white;
}

.sc-footer-contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.sc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

.sc-footer-legal {
    display: flex;
}

.sc-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.sc-footer-legal a:hover {
    color: white;
}


@media (max-width: 1024px) {
    .sc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sc-nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .sc-nav-list.active {
        display: flex;
    }

    .sc-nav-item {
        margin: 10px 0;
    }

    .sc-mobile-toggle {
        display: block;
    }

    .sc-about-inner {
        flex-direction: column;
    }

    .sc-about-image {
        order: -1;
    }

    .sc-footer-top {
        grid-template-columns: 1fr;
    }

    .sc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sc-footer-legal {
        margin-top: 15px;
    }

    .sc-footer-legal a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .sc-stats-grid {
        grid-template-columns: 1fr;
    }

    .sc-page-title {
        font-size: 32px;
    }

    .sc-about-title {
        font-size: 28px;
    }

    .sc-stat-number {
        font-size: 36px;
    }
}


.sc-contact-info {
    padding: 80px 0;
    background-color: var(--background-light);
}

.sc-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sc-contact-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sc-contact-card:hover {
    transform: translateY(-10px);
}

.sc-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(40, 113, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-contact-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.sc-contact-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.sc-contact-details {
    margin-bottom: 20px;
}

.sc-contact-details p {
    margin-bottom: 5px;
}


.sc-contact-form-section {
    padding: 100px 0;
}

.sc-contact-form-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.sc-contact-form-content {
    padding-right: 30px;
}

.sc-contact-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.sc-contact-form-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.sc-contact-form-text {
    margin-bottom: 30px;
}

.sc-form-group {
    margin-bottom: 25px;
}

.sc-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.sc-form-input,
.sc-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.sc-form-input:focus,
.sc-form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.sc-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.sc-form-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.sc-form-submit:hover {
    background-color: #1a5de0;
}

.sc-form-submit i {
    margin-left: 8px;
    font-size: 14px;
}


.sc-thankyou-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sc-thankyou-popup.active {
    opacity: 1;
    visibility: visible;
}

.sc-thankyou-content {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

.sc-thankyou-popup.active .sc-thankyou-content {
    transform: translateY(0);
}

.sc-thankyou-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.sc-thankyou-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.sc-thankyou-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sc-thankyou-text {
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .sc-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 768px) {


    .sc-contact-grid {
        grid-template-columns: 1fr;
    }

    .sc-contact-form-inner {
        grid-template-columns: 1fr;
    }

    .sc-contact-form-content {
        padding-right: 0;
    }


}

@media (max-width: 480px) {
    .sc-page-title {
        font-size: 32px;
    }

    .sc-contact-form-title {
        font-size: 28px;
    }
}




.sc-services {
    padding: 100px 0;
    background-color: var(--background-light);
}

.sc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sc-service-card {
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--background-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sc-service-card:nth-child(odd) {
    border-left: 4px solid #EFFCF9;
}

.sc-service-card:nth-child(even) {
    border-left: 4px solid #FFFAF2;
}

.sc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sc-service-icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--primary-color);
}

.sc-service-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.sc-service-features {
    margin: 20px 0;
    list-style: none;
}

.sc-service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.sc-service-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

.sc-service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}

.sc-service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sc-service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .sc-services-grid {
        grid-template-columns: 1fr;
    }
}


.sc-faq {
    padding: 100px 0;
    background-color: var(--background-white);
}

.sc-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.sc-faq-item {
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sc-faq-item:hover {
    border-color: var(--primary-color);
}

.sc-faq-question {
    padding: 20px;
    background-color: var(--background-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sc-faq-question:hover {
    background-color: rgba(40, 113, 255, 0.05);
}

.sc-faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
}

.sc-faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.sc-faq-item.active .sc-faq-question i {
    transform: rotate(180deg);
}

.sc-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sc-faq-item.active .sc-faq-answer {
    padding: 20px;
    max-height: 500px;
}

.sc-faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sc-faq-question h3 {
        font-size: 16px;
        padding-right: 20px;
    }
}


.sc-policy {
    padding: 100px 0;
    background-color: var(--background-white);
}

.sc-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.sc-page-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.sc-page-subtitle {
    color: var(--text-color);
    font-size: 18px;
}

.sc-policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.sc-policy-section {
    margin-bottom: 40px;
}

.sc-policy-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sc-policy-section h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: var(--heading-color);
}

.sc-policy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.sc-policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.sc-policy-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.sc-contact-info {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.sc-contact-info p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .sc-policy {
        padding: 60px 0;
    }

    .sc-page-title {
        font-size: 28px;
    }
}






























@media (max-width: 1024px) {
    .sc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sc-nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .sc-nav-list.active {
        display: flex;
    }

    .sc-nav-item {
        margin: 10px 0;
    }

    .sc-mobile-toggle {
        display: block;
    }

    .sc-hero-title {
        font-size: 36px;
    }

    .sc-about-inner {
        flex-direction: column;
    }

    .sc-services-grid {
        grid-template-columns: 1fr;
    }

    .sc-blog-grid {
        grid-template-columns: 1fr;
    }

    .sc-footer-top {
        grid-template-columns: 1fr;
    }

    .sc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sc-footer-legal {
        margin-top: 15px;
    }

    .sc-footer-legal a {
        margin: 0 10px;
    }

    .sc-cookie-popup {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .sc-features-grid {
        grid-template-columns: 1fr;
    }

    .sc-hero-title {
        font-size: 28px;
    }

    .sc-section-heading,
    .sc-about-title,
    .sc-cta-title {
        font-size: 28px;
    }

    .sc-hero {
        padding: 150px 0 80px 0;
    }

    .sc-btn {
        display: none;
    }
}