.blogHeroSection {
    background: linear-gradient(135deg, var(--ocean-depths), var(--midnight-blue));
    padding: 147px 0 89px;
    color: #ffffff;
    text-align: center;
}

.blogHeroSection h1 {
    font-size: 2.8rem;
    margin-bottom: 23px;
    color: #ffffff;
}

.blogHeroSection p {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    max-width: 680px;
    margin: 0 auto;
}

.blogContentArea {
    padding: 87px 0;
    background: #ffffff;
}

.blogContentWrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 23px;
}

.blogIconHeader {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 31px;
}

.blogIconContainer {
    width: 67px;
    height: 67px;
    background: var(--ocean-depths);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
            inset 4px 4px 8px rgba(0, 35, 70, 0.3),
            inset -4px -4px 8px rgba(0, 91, 166, 0.1);
}

.blogIconContainer img {
    width: 32px;
    height: 32px;
    filter: invert(100%);
}

.blogTitle {
    font-size: 2.1rem;
    color: var(--midnight-blue);
    margin: 0;
}

.blogTextContent {
    background: var(--cloud-mist);
    padding: 43px 39px;
    box-shadow:
            12px 12px 24px rgba(0, 53, 102, 0.08),
            -12px -12px 24px rgba(255, 255, 255, 0.7);
}

.blogTextContent p {
    font-size: 16px;
    line-height: 1.8;
    color: #555566;
    margin-bottom: 21px;
}

.blogTextContent p:last-child {
    margin-bottom: 0;
}

.backToHome {
    text-align: center;
    margin-top: 47px;
}

.backButton {
    display: inline-block;
    font-size: 15px;
    font-weight: 520;
    border: 2px solid var(--ocean-depths);
    color: var(--ocean-depths);
    text-decoration: none;
    padding: 17px 34px;
    background: transparent;
    transition: all 0.42s ease;
    box-shadow:
            6px 6px 12px rgba(0, 53, 102, 0.1),
            -6px -6px 12px rgba(255, 255, 255, 0.7);
}

.backButton:hover {
    background: var(--ocean-depths);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
            10px 10px 20px rgba(0, 53, 102, 0.2),
            -10px -10px 20px rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 890px) {
    .blogHeroSection {
        padding: 127px 0 67px;
    }

    .blogHeroSection h1 {
        font-size: 2.1rem;
    }

    .blogContentArea {
        padding: 57px 0;
    }

    .blogTextContent {
        padding: 31px 23px;
    }

    .blogIconHeader {
        flex-direction: column;
        text-align: center;
        gap: 17px;
    }
}