.greeting-page {
    padding: 100px 20px;
    background: #f8fafb;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    margin-bottom: 70px;
    font-weight: bold;
}

.page-title span {
    color: #d0a76f;
    font-weight: 700;
    letter-spacing: 3px;
}

.page-title h1 {
    font-size: 42px;
    margin-top: 10px;
    text-align: center;
}

.greeting-card {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: #fff;
    padding: 70px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.greeting-image {
    width: 200px;
    flex-shrink: 0;
}

.greeting-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.profile {
    text-align: center;
    margin-top: 25px;
}

.position {
    color: #888;
    margin-bottom: 5px;
}

.profile h2 {
    color: #0f5d6b;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
}

.greeting-text {
    flex: 1;
    max-width: 760px;
    text-align: left;
}

.greeting-text h2 {
    font-size: 34px;
    color: #0c4450;
    font-weight: 700;
    line-height: 1.5;
}

.greeting-text h2:first-child {
    margin-top: 0;
}

.greeting-text h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #d0a76f;
    margin-top: 15px;
}

.greeting-text p {
    line-height: 2.5;
    margin-bottom: 32px;
    color: #444;
    font-size: 17px;
}

@media (max-width: 768px) {

    .greeting-card {
        flex-direction: column;
        padding: 30px;
    }

    .greeting-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .greeting-text h2 {
        font-size: 24px;
    }

    .greeting-text {
        text-align: left;
    }

        .greeting-card {
            padding: 25px;
        }
    
        .profile h2 {
            font-size: 32px;
        }
    
        .greeting-text {
            text-align: left;
        }
    
        .greeting-text h2 {
            font-size: 28px;
        }
    
        .greeting-text p {
            font-size: 15px;
            line-height: 2.2;
        }
}