:root {
    --get--bg-light: #F8F8F8;
    --get--bg-white: #fff;
    --get--accent: #8CBC43;
    --get--footer: #232323;
    --get--text-primary: #243238;
    --get--text-heading: #222D35;
    --get--text-light: #6c757d;
    --get--border: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--get--text-primary);
    background-color: var(--get--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--get--text-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

.get--container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.get--btn {
    display: inline-block;
    background-color: var(--get--accent);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.get--btn:hover {
    background-color: #7ca93a;
    transform: translateY(-2px);
}

.get--btn-outline {
    background-color: transparent;
    border: 1px solid #333;
    color: #333;
}

.get--btn-outline:hover {
    background-color: var(--get--accent);
    color: white;
}


.get--header {
    background-color: var(--get--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.get--header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}

.get--logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--get--text-heading);
}

.get--logo span {
    color: var(--get--accent);
}

.get--nav {
    display: flex;
    align-items: center;
}

.get--nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.get--nav-item {
    margin-left: 30px;
}

.get--nav-link {
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}

.get--nav-link:hover {
    color: var(--get--accent);
}

.get--mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.get--banner {
    background: url('../content/hero.jpg') left center no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.get--banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get--banner-content {
    flex: 1;
    max-width: 600px;
}

.get--banner-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.get--banner-title span {
    color: var(--get--accent);
}

.get--banner-text {
    font-size: 18px;
    color: var(--get--text-light);
    margin-bottom: 30px;
}

.get--banner-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.get--tag {
    background-color: rgba(140, 188, 67, 0.1);
    color: #444;
    padding: 8px 16px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.get--banner-buttons {
    display: flex;
    gap: 15px;
}

.get--banner-image {
    flex: 1;
    text-align: center;
}

.get--banner-image img {
    max-width: 100%;
    height: auto;
}


.get--about {
    padding: 100px 0;
    background-color: var(--get--bg-light);
}

.get--section-header {
    text-align: center;
    margin-bottom: 60px;
}

.get--section-subtitle {
    color: var(--get--accent);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.get--section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.get--about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.get--about-content {
    flex: 1;
}

.get--about-text {
    color: var(--get--text-light);
    margin-bottom: 30px;
}

.get--about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.get--feature {
    display: flex;
    align-items: flex-start;
}

.get--feature-icon {
    color: var(--get--accent);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.get--feature-content h4 {
    margin-bottom: 8px;
}

.get--feature-content p {
    color: var(--get--text-light);
    font-size: 14px;
}

.get--about-image {
    flex: 1;
    text-align: center;
}

.get--about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


.get--services {
    padding: 100px 0;
    background-color: var(--get--bg-white);
}

.get--services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.get--service-card {
    background-color: var(--get--bg-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.get--service-card:hover {
    transform: translateY(-10px);
}

.get--service-icon {
    color: var(--get--accent);
    font-size: 40px;
    margin-bottom: 20px;
}

.get--service-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.get--service-text {
    color: var(--get--text-light);
    margin-bottom: 20px;
}

.get--service-link {
    color: var(--get--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.get--service-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.get--service-link:hover i {
    transform: translateX(5px);
}


.get--stats {
    padding: 30px 0;
    background-color: var(--get--bg-light);
}

.get--stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.get--stat-item {
    text-align: center;
    padding: 20px;
}

.get--stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--get--accent);
    margin-bottom: 10px;
}

.get--stat-text {
    font-size: 18px;
    color: var(--get--text-heading);
}


.get--faq {
    padding: 100px 0;
    background-color: var(--get--bg-white);
}

.get--faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.get--faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--get--border);
    border-radius: 8px;
    overflow: hidden;
}

.get--faq-question {
    padding: 20px;
    background-color: var(--get--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.get--faq-question i {
    transition: transform 0.3s;
}

.get--faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.get--faq-item.active .get--faq-question i {
    transform: rotate(180deg);
}

.get--faq-item.active .get--faq-answer {
    padding: 20px;
    max-height: 500px;
}


.get--cta {
    padding: 100px 0;
    background-color: var(--get--bg-light);
    text-align: center;
}

.get--cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.get--cta-text {
    color: var(--get--text-light);
    margin-bottom: 30px;
}


.get--footer {
    background-color: var(--get--footer);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

.get--footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.get--footer-logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.get--footer-logo span {
    color: var(--get--accent);
}

.get--footer-about {
    margin-bottom: 20px;
}

.get--footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.get--footer-links {
    list-style: none;
}

.get--footer-link {
    margin-bottom: 10px;
}

.get--footer-link a {
    transition: color 0.3s;
}

.get--footer-link a:hover {
    color: var(--get--accent);
}

.get--footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.get--footer-contact i {
    color: var(--get--accent);
    margin-right: 10px;
    margin-top: 3px;
}

.get--footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.get--footer-policy {
    display: flex;
}

.get--footer-policy a {
    margin-right: 20px;
    transition: color 0.3s;
}

.get--footer-policy a:hover {
    color: var(--get--accent);
}


.get--cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--get--bg-white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 25px;
    z-index: 1001;
    display: none;
}

.get--cookie-popup.active {
    display: block;
}

.get--cookie-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.get--cookie-text {
    color: var(--get--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.get--cookie-buttons {
    display: flex;
    gap: 10px;
}

.get--cookie-btn {
    padding: 8px 20px;
    font-size: 14px;
}


.get--page-header {
    background-color: var(--get--bg-white);
    padding: 100px 0 60px;
    text-align: center;
}

.get--page-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.get--page-subtitle {
    color: var(--get--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}


.get--about-hero {
    padding: 100px 0;
    background-color: var(--get--bg-white);
}

.get--about-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.get--about-hero-content {
    flex: 1;
}

.get--section-subtitle {
    color: var(--get--accent);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.get--section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.get--about-hero-text {
    color: var(--get--text-light);
    margin-bottom: 30px;
}

.get--about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.get--about-stat {
    text-align: center;
}

.get--about-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--get--accent);
    margin-bottom: 5px;
}

.get--about-stat-text {
    font-size: 14px;
    color: var(--get--text-light);
}

.get--about-hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.get--about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.get--floating-card {
    position: absolute;
    background-color: var(--get--bg-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.get--floating-card-1 {
    bottom: 30px;
    left: -30px;
}

.get--floating-card-2 {
    top: 30px;
    right: -30px;
}

.get--floating-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 188, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--get--accent);
    font-size: 20px;
}

.get--floating-text h4 {
    margin-bottom: 5px;
}

.get--floating-text p {
    font-size: 14px;
    color: var(--get--text-light);
}


.get--values {
    padding: 100px 0;
    background-color: var(--get--bg-light);
}

.get--values-header {
    text-align: center;
    margin-bottom: 60px;
}

.get--values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.get--value-card {
    background-color: var(--get--bg-white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.get--value-card:hover {
    transform: translateY(-10px);
}

.get--value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(140, 188, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--get--accent);
    font-size: 32px;
}

.get--value-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.get--value-text {
    color: var(--get--text-light);
}


.get--approach {
    padding: 100px 0;
    background-color: var(--get--bg-white);
}

.get--approach-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.get--approach-content {
    flex: 1;
}

.get--approach-text {
    color: var(--get--text-light);
    margin-bottom: 30px;
}

.get--approach-steps {
    margin-top: 40px;
}

.get--approach-step {
    display: flex;
    margin-bottom: 30px;
}

.get--step-number {
    width: 50px;
    height: 50px;
    background-color: var(--get--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.get--step-content h4 {
    margin-bottom: 10px;
}

.get--step-content p {
    color: var(--get--text-light);
}

.get--approach-image {
    flex: 1;
    text-align: center;
}

.get--approach-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}




.get--contact-info {
    padding: 80px 0;
    background-color: var(--get--bg-white);
}

.get--contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.get--contact-info-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--get--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.get--contact-info-item:hover {
    transform: translateY(-5px);
}

.get--contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(140, 188, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--get--accent);
    font-size: 28px;
}

.get--contact-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.get--contact-text {
    color: var(--get--text-light);
}


.get--contact-form-section {
    padding: 100px 0;
    background-color: var(--get--bg-light);
}

.get--contact-form-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.get--contact-form-content {
    flex: 1;
}

.get--contact-form-text {
    color: var(--get--text-light);
    margin-bottom: 30px;
}

.get--contact-features {
    margin-top: 30px;
}

.get--contact-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--get--text-light);
}

.get--contact-feature i {
    color: var(--get--accent);
    margin-right: 10px;
    font-size: 18px;
}

.get--contact-form-wrapper {
    flex: 1;
    background-color: var(--get--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.get--form-group {
    margin-bottom: 25px;
}

.get--form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--get--text-heading);
}

.get--form-input,
.get--form-select,
.get--form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--get--border);
    border-radius: 4px;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.get--form-input:focus,
.get--form-select:focus,
.get--form-textarea:focus {
    outline: none;
    border-color: var(--get--accent);
}

.get--form-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.get--thank-you-message {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.get--thank-you-icon {
    font-size: 60px;
    color: var(--get--accent);
    margin-bottom: 20px;
}

.get--thank-you-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.get--thank-you-text {
    color: var(--get--text-light);
}


@media (max-width: 992px) {
    .get--contact-form-inner {
        flex-direction: column;
    }

    .get--contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .get--contact-info-grid {
        grid-template-columns: 1fr;
    }

    .get--contact-form-wrapper {
        padding: 30px 20px;
    }
}




.get--services-hero {
    padding: 120px 0 80px;
    background-color: var(--get--bg-white);
    text-align: center;
}

.get--services-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--get--text-heading);
}

.get--services-hero-text {
    font-size: 18px;
    color: var(--get--text-light);
    max-width: 600px;
    margin: 0 auto;
}


.get--detailed-services {
    padding: 100px 0;
    background-color: var(--get--bg-light);
}

.get--detailed-service {
    background-color: var(--get--bg-white);
    border-radius: 12px;
    padding: 60px;
    box-sizing: border-box;
    width: 49%;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get--detailed-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.get--service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--get--accent), #7ca93a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 32px;
}

.get--service-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--get--text-heading);
}

.get--service-description {
    font-size: 18px;
    color: var(--get--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.get--service-features {
    margin-bottom: 40px;
}

.get--service-features h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--get--text-heading);
}

.get--service-features ul {
    list-style: none;
    padding: 0;
}

.get--service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--get--text-primary);
}

.get--service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--get--accent);
    font-weight: bold;
    font-size: 16px;
}

.get--service-benefits h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--get--text-heading);
}

.get--benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.get--benefit-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(140, 188, 67, 0.08);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.get--benefit-item:hover {
    transform: translateX(5px);
}

.get--benefit-item i {
    color: var(--get--accent);
    font-size: 20px;
    margin-right: 12px;
}

.get--benefit-item span {
    font-weight: 500;
    color: var(--get--text-heading);
}


.get--services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--get--text-heading) 0%, #1a252b 100%);
    color: white;
    text-align: center;
}

.get--services-cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.get--services-cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.get--services-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 992px) {
    .get--services-hero-title {
        font-size: 36px;
    }

    .get--detailed-service {
        padding: 40px 30px;
    }

    .get--service-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .get--services-hero {
        padding: 100px 0 60px;
    }

    .get--services-hero-title {
        font-size: 32px;
    }

    .get--detailed-service {
        padding: 30px 20px;
    }

    .get--service-title {
        font-size: 24px;
    }

    .get--benefits-grid {
        grid-template-columns: 1fr;
    }

    .get--services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .get--services-cta-buttons .get--btn {
        width: 100%;
        max-width: 300px;
    }
}


.get--flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}



.get--policy-hero {
    padding: 80px 0 80px;
    background-color: var(--get--bg-white);
    text-align: center;
    border-bottom: 1px solid var(--get--border);
}

.get--policy-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--get--text-heading);
}

.get--policy-subtitle {
    font-size: 18px;
    color: var(--get--text-light);
}


.get--policy-content {
    padding: 80px 0;
    background-color: var(--get--bg-light);
}

.get--policy-main {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--get--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.get--policy-section {
    margin-bottom: 50px;
}

.get--policy-section:last-child {
    margin-bottom: 0;
}

.get--policy-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--get--text-heading);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--get--accent);
}

.get--policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--get--text-primary);
}

.get--policy-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.get--policy-section li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--get--text-primary);
    padding-left: 10px;
}

.get--policy-section strong {
    color: var(--get--text-heading);
}

.get--policy-contact {
    background-color: rgba(140, 188, 67, 0.08);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.get--policy-contact p {
    margin-bottom: 10px;
}

.get--policy-contact a {
    color: var(--get--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.get--policy-contact a:hover {
    color: #7ca93a;
    text-decoration: underline;
}


@media (max-width: 992px) {
    .get--policy-title {
        font-size: 36px;
    }

    .get--policy-main {
        padding: 40px 30px;
    }

    .get--contact-form-wrapper {
        flex: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .get--policy-hero {
        padding: 70px 0 60px;
    }

    .get--policy-title {
        font-size: 32px;
    }

    .get--policy-content {
        padding: 60px 0;
    }

    .get--policy-main {
        padding: 30px 20px;
    }

    .get--policy-section h2 {
        font-size: 22px;
    }
}





















































@media (max-width: 992px) {

    .get--banner-inner,
    .get--about-inner {
        flex-direction: column;
    }

    .get--banner-content,
    .get--about-content {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .get--services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .get--footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .get--nav {
        display: none;
    }

    .get--mobile-toggle {
        display: block;
    }

    .get--nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--get--bg-white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .get--nav-list {
        flex-direction: column;
    }

    .get--nav-item {
        margin: 10px 0;
    }

    .get--banner-title {
        font-size: 36px;
    }

    .get--services-grid {
        grid-template-columns: 1fr;
    }

    .get--stats-grid {
        grid-template-columns: 1fr;
    }

    .get--footer-main {
        grid-template-columns: 1fr;
    }

    .get--footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .get--footer-policy {
        margin-top: 15px;
    }
}


.get--footer {
    background-color: var(--get--footer);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

.get--footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.get--footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.get--footer-logo span {
    color: var(--get--accent);
}

.get--footer-about {
    margin-bottom: 20px;
}

.get--footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.get--footer-links {
    list-style: none;
}

.get--footer-link {
    margin-bottom: 10px;
}

.get--footer-link a {
    transition: color 0.3s;
}

.get--footer-link a:hover {
    color: var(--get--accent);
}

.get--footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.get--footer-contact i {
    color: var(--get--accent);
    margin-right: 10px;
    margin-top: 1px;
}

.get--footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.get--footer-policy {
    display: flex;
}

.get--footer-policy a {
    margin-right: 20px;
    transition: color 0.3s;
}

.get--footer-policy a:hover {
    color: var(--get--accent);
}


@media (max-width: 992px) {

    .get--about-hero-inner,
    .get--approach-inner {
        flex-direction: column;
    }

    .get--about-hero-content,
    .get--approach-content {
        margin-bottom: 40px;
    }

    .get--values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .get--footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .get--nav {
        display: none;
    }

    .get--mobile-toggle {
        display: block;
    }

    .get--nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--get--bg-white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .get--nav-list {
        flex-direction: column;
    }

    .get--nav-item {
        margin: 10px 0;
    }

    .get--page-title {
        font-size: 36px;
    }

    .get--about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .get--values-grid {
        grid-template-columns: 1fr;
    }

    .get--footer-main {
        grid-template-columns: 1fr;
    }

    .get--footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .get--footer-policy {
        margin-top: 15px;
    }

    .get--floating-card {
        position: static;
        margin-top: 20px;
    }
}

@media(max-width: 767px) {
    .get--detailed-service {
        width: 100%;
    }
}

.get--services-cta .get--btn-outline {
    border-color: #fff;
    color: #fff;
}