/* Assistant Font Family */
@font-face {
    font-family: "Assistant";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/assistant-v24-hebrew_latin-regular.woff2")
        format("woff2");
}

@font-face {
    font-family: "Assistant";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/assistant-v24-hebrew_latin-600.woff2") format("woff2");
}

@font-face {
    font-family: "Assistant";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/assistant-v24-hebrew_latin-700.woff2") format("woff2");
}

:root {
    --primary-turquoise: #5ac3bc;
    --primary-blue: #0066b7;
    --primary-dark: #2c5f6f;
    --light-turquoise: #b8e5e1;
    --bg-light: #f7f9fb;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Assistant", sans-serif;
    line-height: 1.4;
    color: var(--primary-dark);
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

/* Header */
.site-header {
    padding: 20px 0 8px;
    box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1),
        0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.site-branding {
    text-align: center;
}

.site-logo {
    max-width: 228px;
    height: auto;
}

/* Hero Section */
.hero-section {
    padding: 37px 0;
    text-align: center;
}
.hero-section::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../img/decor-1.svg);
    width: 545px;
    height: 324px;
    top: 34px;
    right: 0;
    z-index: -1;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-turquoise);
    margin-bottom: 5px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--primary-dark);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Banner Section */
.banner-image {
    overflow: hidden;
}

.banner-image picture {
    display: block;
    width: 100%;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../img/decor-2.svg) no-repeat;
    width: 1150px;
    height: 930px;
    top: -275px;
    left: 0;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.03);
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-dark);
    margin-bottom: 7px;
}

.feature-description {
    font-size: 18px;
    color: var(--primary-dark);
    line-height: 1.4;
}

.feature-title-bottom {
    margin-top: 96px;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.3;
    text-align: center;
    color: var(--primary-blue);
}

.feature-text-bottom {
    text-align: center;
    font-size: 18px;
    max-width: 1120px;
    margin: 0 auto 54px;
}
.feature-title-bottom-s {
    margin-bottom: 24px;
    margin-top: 50px;
}

/* Why Suitable Section */
.why-suitable-section {
    padding-top: 20px;
    position: relative;
}

.why-suitable-section::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../img/decor-3.svg);
    width: 1150px;
    height: 990px;
    top: 60px;
    right: 66px;
    z-index: -1;
}

/* Why GE Section */
.why-ge-title {
    text-align: center;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.05;
    margin-bottom: 18px;
    color: #27b19e;
}

.why-ge-content {
    max-width: 864px;
    margin: 0 auto 66px;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Documents Section */
.doc-container {
    padding-top: 16px;
    padding-bottom: 34px;
    background-color: rgba(238, 249, 251, 0.6);
}

.doc-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
    color: #27b19e;
    margin-bottom: 16px;
}

.documents-grid {
    display: flex;
    gap: 24px;
}

.document-item {
    flex: 0 1 312px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    color: #27b19e;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    /* background: var(--primary-turquoise);
    color: #ffffff; */
}

.download-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.site-footer {
    margin-top: 0;
}

.footer-info {
    background: var(--light-turquoise);
    padding: 46px 0 10px;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.footer-address,
.footer-phone {
    font-size: 18px;
    line-height: 1.5;
    color: var(--primary-dark);
}

.footer-phone {
    display: block;
    margin-top: 14px;
    text-decoration: none;
}

.footer-phone:hover {
    text-decoration: underline;
}

.footer-copyright {
    background: var(--primary-turquoise);
    padding: 24px 0;
}

.copyright-text {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* 404 Error Page */
.error-404-section {
    padding: 80px 0 120px;
    text-align: center;
    background: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404-number {
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-turquoise);
    margin-bottom: 20px;
}

.error-404-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.error-404-text {
    font-size: 20px;
    color: var(--primary-dark);
    line-height: 1.5;
    margin-bottom: 40px;
}

.error-404-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary-turquoise);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(90, 195, 188, 0.3);
}

.error-404-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 183, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section::after,
    .features-section::after,
    .why-suitable-section::after {
        display: none;
    }
}
/* Tablets - 1024px and below */
@media (max-width: 1024px) {
    /* Container */
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    /* Header */
    .site-header {
        padding: 15px 0;
    }

    .site-logo {
        max-width: 200px;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 0;
    }

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

    .hero-subtitle {
        font-size: 20px;
        max-width: 600px;
    }

    /* Features Section */
    .features-section {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .feature-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 16px;
    }

    .feature-title-bottom {
        margin-top: 50px;
        font-size: 36px;
    }

    .feature-text-bottom {
        font-size: 16px;
        max-width: 90%;
        margin-bottom: 40px;
    }

    /* Why GE Section */
    .why-ge-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .why-ge-content {
        font-size: 28px;
        margin-bottom: 60px;
        max-width: 90%;
    }

    /* Documents Section */
    .documents-section {
        padding: 60px 0;
    }

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

    .documents-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .document-item {
        flex: 0 1 calc(50% - 10px);
        padding: 14px 20px;
    }

    /* Footer */
    .footer-info {
        padding: 35px 0;
    }

    .footer-brand {
        font-size: 22px;
    }

    .footer-address,
    .footer-phone {
        font-size: 16px;
    }

    .copyright-text {
        font-size: 15px;
    }

    /* 404 Page */
    .error-404-section {
        padding: 60px 0 80px;
    }

    .error-404-number {
        font-size: 120px;
    }

    .error-404-title {
        font-size: 36px;
    }

    .error-404-text {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .error-404-button {
        padding: 14px 40px;
        font-size: 17px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Header */
    .site-header {
        padding: 12px 0;
    }

    .site-logo {
        max-width: 160px;
    }

    /* Hero Section */
    .hero-section {
        padding: 25px 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    /* Features Section */
    .features-section {
        padding: 30px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item {
        text-align: center;
    }

    .feature-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 15px;
    }

    .feature-title-bottom {
        margin-top: 35px;
        font-size: 28px;
    }

    .feature-text-bottom {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .feature-title-bottom-s {
        margin-bottom: 16px;
    }

    /* Why Suitable Section */

    /* Why GE Section */
    .why-ge-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .why-ge-content {
        font-size: 20px;
        margin-bottom: 40px;
        max-width: 100%;
        line-height: 1.3;
    }

    /* Documents Section */
    .documents-section {
        padding: 40px 0;
    }

    .doc-title {
        font-size: 20px;
    }

    .documents-grid {
        flex-direction: column;
        gap: 16px;
    }

    .document-item {
        flex: 1 1 auto;
        width: 100%;
        padding: 12px 18px;
        height: auto;
        min-height: 52px;
    }

    /* Footer */
    .footer-info {
        padding: 30px 0;
    }

    .footer-brand {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer-address,
    .footer-phone {
        font-size: 15px;
    }

    .footer-copyright {
        padding: 15px 0;
    }

    .copyright-text {
        font-size: 14px;
    }

    /* 404 Page */
    .error-404-section {
        padding: 40px 0 60px;
    }

    .error-404-number {
        font-size: 80px;
        margin-bottom: 16px;
    }

    .error-404-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .error-404-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .error-404-button {
        padding: 12px 32px;
        font-size: 16px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 14px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-text-bottom,
    .feature-description {
        font-size: 14px;
    }

    .feature-title-bottom {
        font-size: 24px;
    }

    .why-ge-title {
        font-size: 26px;
    }

    .doc-title,
    .why-ge-content {
        font-size: 18px;
    }

    .document-item {
        padding: 10px 15px;
    }

    /* 404 Page */
    .error-404-section {
        padding: 30px 0 50px;
    }

    .error-404-number {
        font-size: 60px;
    }

    .error-404-title {
        font-size: 24px;
    }

    .error-404-text {
        font-size: 14px;
    }

    .error-404-button {
        padding: 10px 28px;
        font-size: 15px;
    }
}
