/* Main CSS */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.site-main {
    /* Add main styles here */
}

/* Hero Section */
.hero-section {
    height: 65vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 80px;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

/* Hero Title */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Hero Button */
.hero-button {
    display: inline-block;
    background-color: #0073aa;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    margin: 0 10px;
}

.hero-button:hover {
    background-color: #005177;
}

/* Services Section */
.services-section {
    padding: 60px 0;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.services-column-left {
    display: flex;
    flex-direction: column;
}

.services-column-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.service-card {
    box-sizing: border-box;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    width: 100%;
}

.service-main {
    height: 100%;
    min-height: 600px;
}

.service-secondary {
    height: 100%;
    min-height: 290px;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
    transition: background 0.3s;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.service-description {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 25px;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.service-card:hover .service-description {
    opacity: 1;
}

.service-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.service-button:hover {
    background-color: #005177;
    color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-section {
        height: 85vh;
        min-height: 600px;
    }

    .hero-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    /* Services Responsive */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-column-right {
        grid-template-rows: auto;
    }

    .service-main {
        min-height: 400px;
    }

    .service-secondary {
        min-height: 300px;
    }
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000e53 0%, #001a80 100%);
    color: #fff;
}

.steps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 56px;
    font-weight: 800;
    color: #4cc9f0;
    margin-bottom: 20px;
    line-height: 1;
    opacity: 0.8;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.steps-cta-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.steps-cta-title span {
    display: block;
    color: #4cc9f0;
    font-weight: 800;
    margin-top: 5px;
}

.steps-cta-button {
    display: inline-block;
    background-color: #0073aa;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.steps-cta-button:hover {
    background-color: #005177;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .steps-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .steps-cta-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* Projects Section */
.projects-section {
    padding: 60px 0;
}

.projects-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: #fff;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s;
}

.project-card:hover .project-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.project-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.project-descriptions-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.project-description {
    grid-row: 1;
    grid-column: 1;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transition: opacity 0.3s ease-out;
    margin: 0;
}

.project-card:hover .project-description {
    opacity: 0;
}

.project-hover-content {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    margin: 0;
}

.project-card:hover .project-hover-content {
    opacity: 1;
}

.project-hover-description {
    font-size: 15px;
    line-height: 1.5;
    color: #ddd;
    margin: 0;
}

.project-price {
    font-size: 16px;
    margin-bottom: 20px;
}

.project-price strong {
    font-weight: 700;
    font-size: 18px;
}

.project-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.project-button:hover {
    background-color: #005177;
    color: #fff;
}

@media (max-width: 960px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: auto;
        min-height: 350px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.faq-wrapper {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s, background-color 0.2s;
    margin: 0;
    text-indent: 0;
}

.faq-question:hover {
    color: #0073aa;
    background-color: white;
}

.faq-question[aria-expanded="true"] {
    color: #0073aa;
    background-color: white;
}

.faq-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-toggle-text {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: color 0.2s;
}

.faq-question:hover .faq-toggle-text,
.faq-question[aria-expanded="true"] .faq-toggle-text {
    color: #0073aa;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #0073aa;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    background-color: #fff;
}

.faq-answer-inner {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Info (Left) */
.contact-info {
    background: linear-gradient(135deg, #001a80 0%, #000e53 100%);
    padding: 40px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.icon-square {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #4cc9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.icon-square svg {
    width: 24px;
    height: 24px;
}

/* Contact Form (Right) */
.contact-form-wrapper {
    background: linear-gradient(135deg, #000e53 0%, #001a80 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-group.required label::after {
    content: " *";
    color: #4cc9f0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.2s;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    border-radius: 4px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4cc9f0;
    background: rgba(255, 255, 255, 0.1);
}

.contact-submit {
    display: block;
    background-color: #0073aa;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.contact-submit:hover {
    background-color: #005177;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .contact-section {
        padding: 0;
    }

    .contact-section .container {
        padding: 0;
    }

    .contact-wrapper {
        gap: 0;
    }

    .contact-info,
    .contact-form-wrapper {
        border-radius: 0;
        padding: 20px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-icon-box {
        padding: 10px;
        font-size: 14px;
    }

    .icon-square {
        width: 40px;
        height: 40px;
    }

    .icon-square svg {
        width: 20px;
        height: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .contact-submit {
        padding: 12px 24px;
        font-size: 16px;
    }
}


/* Footer */
.site-footer {
    margin-bottom: 40px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    background: linear-gradient(160deg, #000e53 0%, #002060 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 60px 0 30px;
    color: #fff;
}

.site-footer .container {
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-company-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-legal-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Footer Info Items */
.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-info-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-info-item a:hover {
    color: #4cc9f0;
}

.footer-icon {
    color: #4cc9f0;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-icon svg {
    width: 18px;
    height: 18px;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000e53;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
    color: #0073aa;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.2s;
    display: inline-block;
}

.footer-menu a:hover {
    color: #4cc9f0;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-credits a:hover {
    color: #4cc9f0;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-subtitle {
    color: #0073aa;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-us-title {
    color: #1a1a3a;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.why-us-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.why-us-icon {
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
}

.why-us-item-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.why-us-item-text strong {
    color: #1a1a3a;
    font-weight: 700;
}

.why-us-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us-image {
    width: 100%;
    height: auto;
    display: block;
}

.why-us-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    border-radius: 20px;
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-title {
        font-size: 32px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #000e53 0%, #002060 100%);
    color: #fff;
}

.benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #4cc9f0;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1);
    background: rgba(76, 201, 240, 0.2);
}

.benefit-icon {
    font-size: 32px;
    width: auto;
    height: auto;
    line-height: 1;
}

.benefit-icon-placeholder svg {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}