* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1e1e1e;
    font-family: 'DM Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}


.ds_container {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100%;
}


h1,
h2,
h3,
h4,
.ds_title,
.ds_logo-brand {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.ds_subtitle {
    color: #c28e4a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.ds_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c28e4a;
    background: transparent;
    color: #c28e4a;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    border-radius: 40px;
    letter-spacing: 0.5px;
}

.ds_btn:hover {
    background: #c28e4a;
    color: #1e1e1e;
}


.ds_block-bg {
    background-color: #2A2A2A;
}


.ds_header {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ds_logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ds_logo-area img {
    height: 42px;
    width: auto;
}

.ds_brand {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    letter-spacing: -0.5px;
    color: white;
    text-transform: uppercase;
}


.ds_nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ds_nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.ds_nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: 0.2s;
    font-size: 1rem;
}

.ds_nav-links li a:hover {
    color: #c28e4a;
}

.ds_menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}


.ds_banner {
    padding: 80px 0 100px;
    background: url('../images/bg_main.png') no-repeat left center;
    background-size: cover;
    border-radius: 30px;
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
}

.ds_banner-content {
    max-width: 580px;
}

.ds_banner-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.ds_banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


.ds_how {
    padding: 80px 0;
}

.ds_section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ds_section-header h2 {
    font-size: 2.5rem;
}

.ds_grid-4 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.ds_work-card {
    background: #2A2A2A;
    padding: 32px 24px;
    border-radius: 20px;
    flex: 1;
    min-width: 220px;
    transition: transform 0.2s;
    text-align: center;
}

.ds_work-card:hover {
    transform: translateY(-5px);
}

.ds_icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(194, 142, 74, 0.15);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds_work-card h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.ds_work-card p {
    font-size: 0.95rem;
}


.ds_capabilities {
    padding: 80px 0;
}

.ds_cap-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    gap: 30px;
}

.ds_cap-left {
    flex: 1;
}

.ds_cap-right {
    flex: 1;
    font-size: 1.1rem;
}

.ds_features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.ds_feature-item {
    background: #2A2A2A;
    border-radius: 20px;
    padding: 28px 22px;
    width: calc(33.33% - 20px);
    transition: 0.2s;
}

.ds_feature-item .ds_icon {
    margin: 0 0 20px 0;
    width: 56px;
    height: 56px;
}

.ds_feature-item h4 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}


.ds_stats {
    padding: 70px 0;
    background-color: #2A2A2A;
}

.ds_stats-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.ds_stat-block {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ds_stat-number {
    font-family: 'Saira', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #c28e4a;
    line-height: 1;
}

.ds_stat-text {
    font-size: 1.2rem;
    max-width: 180px;
    color: rgba(255, 255, 255, 0.8);
}


.ds_about {
    padding: 70px 0;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.ds_about-content {
    flex: 1;
}

.ds_about-content h2,
.ds_target-content h2 {
    margin-bottom: 20px;
}

.ds_about-image {
    flex: 1;
}

.ds_about-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.ds_about-content p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}


.ds_target {
    padding: 70px 0;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.ds_target-image {
    flex: 1;
}

.ds_target-image img {
    width: 100%;
    border-radius: 24px;
}

.ds_target-content {
    flex: 1;
}

.ds_check-list {
    list-style: none;
    margin: 25px 0 30px;
}

.ds_check-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.ds_check-list li::before {
    content: "✓";
    color: #c28e4a;
    font-weight: bold;
    font-size: 1.2rem;
}


.ds_cta {
    background: #2A2A2A;
    border-radius: 32px;
    padding: 60px 48px;
    margin: 40px auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ds_cta-left h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.ds_cta-left p {
    font-size: 1rem;
    max-width: 500px;
}


.ds_footer {
    background-color: #1e1e1e;
    padding: 70px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ds_footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.ds_footer-col {
    flex: 1;
    min-width: 180px;
}

.ds_footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ds_footer-logo img {
    height: 40px;
}

.ds_footer-logo span {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    text-transform: uppercase;
}

.ds_footer-text {
    margin-bottom: 20px;
    font-size: 0.9rem;
    max-width: 220px;
}

.ds_footer-links {
    list-style: none;
}

.ds_footer-links li {
    margin-bottom: 12px;
}

.ds_footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.2s;
}

.ds_footer-links a:hover {
    color: #c28e4a;
}

.ds_footer-contacts {
    font-style: normal;
    line-height: 1.6;
}

.ds_footer-contacts p {
    margin-bottom: 8px;
}

.ds_copyright {
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.ds_contact-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    font-family: 'DM Sans', sans-serif;
}


.ds_contact-header {
    margin-bottom: 50px;
}

.ds_contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.ds_contact-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.ds_contact-breadcrumb a:hover {
    color: #c28e4a;
}

.ds_contact-breadcrumb span {
    color: #c28e4a;
}

.ds_contact-title {
    font-family: 'Saira', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ds_contact-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}


.ds_contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.ds_contact-form-side {
    flex: 1.4;
    min-width: 280px;
}

.ds_contact-info-side {
    flex: 1;
    min-width: 260px;
}


.ds_form-group {
    margin-bottom: 24px;
}

.ds_form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.ds_form-group input,
.ds_form-group select,
.ds_form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #2A2A2A;
    border: 1px solid rgba(194, 142, 74, 0.3);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #fff;
    transition: all 0.2s;
    outline: none;
}

.ds_form-group input:focus,
.ds_form-group select:focus,
.ds_form-group textarea:focus {
    border-color: #c28e4a;
    box-shadow: 0 0 0 3px rgba(194, 142, 74, 0.2);
}

.ds_form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ds_btn-submit {
    background: transparent;
    border: 2px solid #c28e4a;
    color: #c28e4a;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    width: auto;
    display: inline-block;
}

.ds_btn-submit:hover {
    background: #c28e4a;
    color: #1e1e1e;
}

.ds_thanks-message {
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(194, 142, 74, 0.15);
    border-left: 3px solid #c28e4a;
    border-radius: 12px;
    color: #c28e4a;
    font-weight: 500;
    display: none;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.ds_info-card {
    background: #2A2A2A;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 30px;
}

.ds_info-card h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ds_info-detail {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ds_info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ds_info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c28e4a;
    font-weight: 600;
}

.ds_info-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    word-break: break-word;
}

.ds_info-value a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px dotted rgba(194, 142, 74, 0.5);
}

.ds_info-value a:hover {
    color: #c28e4a;
}

.ds_social-placeholder {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}


@media (max-width: 768px) {
    .ds_contact-title {
        font-size: 2.2rem;
    }

    .ds_contact-wrapper {
        flex-direction: column;
    }
}


.ds_about-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    font-family: 'DM Sans', sans-serif;
}


.ds_about-header {
    margin-bottom: 60px;
}

.ds_about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.ds_about-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.ds_about-breadcrumb a:hover {
    color: #c28e4a;
}

.ds_about-breadcrumb span {
    color: #c28e4a;
}

.ds_about-title {
    font-family: 'Saira', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ds_about-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
}


.ds_story-section {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    align-items: center;
}

.ds_story-content {
    flex: 1.2;
}

.ds_story-image {
    flex: 1;
}

.ds_story-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}

.ds_section-tag {
    color: #c28e4a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 16px;
    display: inline-block;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2 !important;
}

.ds_story-content h2 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.ds_story-content p {
    margin-bottom: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}


.ds_values-section {
    background: #2A2A2A;
    border-radius: 32px;
    padding: 60px 50px;
}

.ds_values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.ds_values-header h2 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
    margin-top: 12px;
    text-transform: uppercase;
}

.ds_values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ds_value-card {
    background: #1e1e1e;
    border-radius: 20px;
    padding: 32px 28px;
    width: calc(33.333% - 20px);
    transition: transform 0.25s ease, box-shadow 0.25s;
    border: 1px solid rgba(194, 142, 74, 0.2);
}

.ds_value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 142, 74, 0.5);
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.5);
}

.ds_value-icon {
    margin-bottom: 20px;
}

.ds_value-icon svg {
    width: 44px;
    height: 44px;
    stroke: #c28e4a;
    stroke-width: 1.5;
    fill: none;
}

.ds_value-card h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 14px;
}

.ds_value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.95rem;
}


.ds_about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c28e4a;
    background: transparent;
    color: #c28e4a;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.ds_about-btn:hover {
    background: #c28e4a;
    color: #1e1e1e;
}


@media (max-width: 900px) {
    .ds_values-grid .ds_value-card {
        width: calc(50% - 15px);
    }

    .ds_story-section {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .ds_values-grid .ds_value-card {
        width: 100%;
    }

    .ds_values-section {
        padding: 40px 24px;
    }

    .ds_about-title {
        font-size: 2.2rem;
    }
}

.ds_capabilities-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    font-family: 'DM Sans', sans-serif;
}


.ds_cap-header {
    margin-bottom: 60px;
}

.ds_cap-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.ds_cap-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.ds_cap-breadcrumb a:hover {
    color: #c28e4a;
}

.ds_cap-breadcrumb span {
    color: #c28e4a;
}

.ds_cap-title {
    font-family: 'Saira', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ds_cap-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
}


.ds_tech-section {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
}

.ds_tech-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.ds_section-badge {
    color: #c28e4a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 16px;
    display: inline-block;
}

.ds_tech-intro h2 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ds_tech-intro p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 1rem;
}

.ds_features-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ds_feature-card-large {
    background: #2A2A2A;
    border-radius: 28px;
    padding: 40px 32px;
    width: calc(50% - 15px);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid rgba(194, 142, 74, 0.15);
}

.ds_feature-card-large:hover {
    transform: translateY(-5px);
    border-color: rgba(194, 142, 74, 0.4);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
}

.ds_feature-icon {
    margin-bottom: 24px;
}

.ds_feature-icon svg {
    width: 52px;
    height: 52px;
    stroke: #c28e4a;
    stroke-width: 1.5;
    fill: none;
}

.ds_feature-card-large h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
}

.ds_feature-card-large p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ds_feature-list {
    list-style: none;
    padding: 0;
}

.ds_feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.ds_feature-list li::before {
    content: "✦";
    color: #c28e4a;
    font-size: 1rem;
}


.ds_scenarios-section {
    background: #2A2A2A;
    border-radius: 32px;
    padding: 60px 50px;
}

.ds_scenarios-header {
    text-align: center;
    margin-bottom: 50px;
}

.ds_scenarios-header h2 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
    margin-top: 12px;
    text-transform: uppercase;
}

.ds_scenarios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ds_scenario-card {
    background: #1e1e1e;
    border-radius: 20px;
    padding: 32px 28px;
    width: calc(33.333% - 20px);
    transition: all 0.25s;
    border: 1px solid rgba(194, 142, 74, 0.2);
}

.ds_scenario-card:hover {
    transform: translateY(-6px);
    border-color: #c28e4a;
}

.ds_scenario-icon svg {
    width: 42px;
    height: 42px;
    stroke: #c28e4a;
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 20px;
}

.ds_scenario-card h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 14px;
}

.ds_scenario-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.95rem;
}

.ds_quote-note {
    margin-top: 45px;
    text-align: center;
    padding: 24px 28px;
    background: rgba(194, 142, 74, 0.08);
    border-radius: 24px;
    border-left: 3px solid #c28e4a;
}

.ds_quote-note p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 1rem;
}

.ds_btn-cap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c28e4a;
    background: transparent;
    color: #c28e4a;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ds_btn-cap:hover {
    background: #c28e4a;
    color: #1e1e1e;
}


@media (max-width: 900px) {
    .ds_feature-card-large {
        width: 100%;
    }

    .ds_scenarios-grid .ds_scenario-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .ds_scenarios-grid .ds_scenario-card {
        width: 100%;
    }

    .ds_scenarios-section {
        padding: 40px 24px;
    }

    .ds_cap-title {
        font-size: 2.2rem;
    }

    .ds_tech-intro h2 {
        font-size: 1.7rem;
    }
}

max-width: 1160px;
margin: 0 auto;
padding: 60px 24px 80px;
font-family: 'DM Sans',
sans-serif;
}


.ds_legal-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ds_legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.ds_legal-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.ds_legal-breadcrumb a:hover {
    color: #c28e4a;
}

.ds_legal-breadcrumb span {
    color: #c28e4a;
}

.ds_legal-title {
    font-family: 'Saira', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ds_legal-date {
    color: #c28e4a;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
}


.ds_legal-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.ds_legal-content h2 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: #fff;
    margin: 35px 0 18px 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.ds_legal-content h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #c28e4a;
    margin: 25px 0 12px 0;
}

.ds_legal-content p {
    margin-bottom: 16px;
}

.ds_legal-content ul,
.ds_legal-content ol {
    margin: 16px 0 20px 30px;
}

.ds_legal-content li {
    margin-bottom: 8px;
}

.ds_legal-content strong {
    color: #fff;
}

.ds_legal-footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.ds_legal-footer-note a {
    color: #c28e4a;
    text-decoration: none;
}

.ds_legal-footer-note a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .ds_legal-title {
        font-size: 2rem;
    }

    .ds_legal-content h2 {
        font-size: 1.3rem;
    }
}




































@media (max-width: 992px) {
    .ds_features-grid .ds_feature-item {
        width: calc(50% - 15px);
    }

    .ds_banner {
        text-align: center;
        width: 96%;
        border-radius: 22px;
        background-position: center;
    }

    .ds_banner-content {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ds_menu-icon {
        display: block;
    }

    .ds_nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #1e1e1e;
        flex-direction: column;
        padding: 80px 40px;
        transition: 0.3s;
        z-index: 1000;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .ds_nav-links.active {
        left: 0;
    }

    .ds_nav-links li a {
        font-size: 1.4rem;
    }

    .ds_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        display: none;
    }

    .ds_overlay.active {
        display: block;
    }

    .ds_nav .ds_btn {
        display: none;
    }

    .ds_header {
        position: relative;
    }

    .ds_grid-4 {
        flex-direction: column;
    }

    .ds_features-grid .ds_feature-item {
        width: 100%;
    }

    .ds_stats-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ds_stat-block {
        justify-content: center;
    }

    .ds_cta {
        flex-direction: column;
        text-align: center;
    }

    .ds_about {
        flex-direction: column;
    }

    .ds_target {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .ds_banner-content h1 {
        font-size: 2.5rem;
    }

    .ds_cap-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ds_stat-block {
        flex-direction: column;
    }

    .ds_stats {
        padding: 50px 0;
    }

    .ds_footer-grid {
        gap: 20px;
    }

    .ds_cta-left h3 {
        font-size: 26px;
    }

    .ds_banner-content h1 {
        font-size: 32px;
    }

    .ds_brand {
        font-size: 1.5rem;
    }
    .ds_logo-area img{
        height: 38px;
    }
}


.ds_icon svg {
    width: 32px;
    height: 32px;
    stroke: #c28e4a;
    stroke-width: 1.5;
    fill: none;
}

.ds_icon.fill-icon svg {
    fill: #c28e4a;
    stroke: none;
}