.hero-section {
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.hero-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 700px;
    z-index: 0;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    z-index: 1;
    pointer-events: none;
}


.hero-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1261px;
    padding: 20px;
    z-index: 2;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #e4dfdf;
}

@media (max-width: 768px) {
    .hero-picture {
        height: 400px;
    }

    .hero-text-content h1 {
        font-size: 32px;
    }

    .hero-text-content p {
        font-size: 16px;
    }

    .hero-text-content {
        text-align: left;
    }

    .hero-container {
        width: 100%;
    }
}

.promo-split-section {
    width: 100%;
    background-color: #fff;
    max-width: 1261px;
    margin: auto;
    padding: 0 20px 0;
}

@media(min-width: 768px) {
    .promo-split-section {
        padding: 0 20px 80px;
    }
}

.promo-split-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.promo-col-image {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eee;
}

.promo-col-content {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.promo-content-inner {
    width: 100%;
    max-width: 500px;
}

.promo-title {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.promo-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

@media (min-width: 1024px) {
    .promo-split-grid {
        flex-direction: row;
        min-height: 500px;  ]
    }

    .promo-col-image,
    .promo-col-content {
        width: 50%;
        height: auto;
    }

    .promo-col-image {
        position: relative;
        height: auto;
    }

    .promo-img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .promo-col-content {
        padding: 80px;
    }
}

.error-codes-section {
    padding: 80px 20px 0;
    background-color: #ffffff;
    max-width: 1261px;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .error-codes-section {
        padding: 80px 20px 40px;
    }
}

.errors-header {
    text-align: left;
    margin-bottom: 50px;
    border-bottom: 2px solid #787878;
    padding-bottom: 20px;
}

.errors-title {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: #000;
}

@media(min-width: 768px) {
.errors-title {
    font-size: 36px;
}
}

.errors-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.error-list {
    display: flex;
    flex-direction: column;
}

.error-item {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.error-item:last-child {
    border-bottom: none;
}

.error-code-col {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.code-badge {
    display: inline-block;
    max-width: 150px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    background-color: #f4f4f4;
    padding: 5px 15px;
    border-radius: 4px;
    letter-spacing: 0;
}

.error-desc-col {
    padding-left: 0;
}

.error-desc-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #111;
}

.error-desc-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

@media (min-width: 768px) {
    .error-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .error-code-col {
        width: 150px;
        margin-bottom: 0;
    }

    .error-desc-col {
        padding-left: 20px;
        flex-grow: 1;
    }
}

.section-header {
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #000;
}

.section-desc {
    color: #666;
    font-size: 16px;
    margin: 0;
}

@media (min-width: 1024px) {

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



.blog-section {
    padding: 0  0  80px;
}

.blog-inner {
    width: 100%;
    max-width: 1261px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.news-img-link {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    text-decoration: none;
}

.news-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #e0e0e0;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.news-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.news-title a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #666;
}

.news-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.news-more-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    margin-top: auto;
}

.news-more-text {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.news-arrow {
    font-size: 24px;
    line-height: 1;
    color: #111;
    font-weight: 400;
    transform: translateX(0);
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: -4px;
}

.news-more-link:hover .news-arrow {
    transform: translateX(5px);
    color: var(--hover-line-color);
}


@media (min-width: 768px) {
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}


.advantages-section {
    background-color: #e5e5e5;
    padding: 100px 0;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.advantage-icon {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.advantage-item h4 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 350px;
}

.container-fluid {
    max-width: 1261px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}


