/* Premium About Layout */
.about-hero-premium {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
    width: 90%;
    margin: 50px auto;
    background-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-hero-premium h1 {
    font-size: 8rem;
    font-family: "Playfair Display", serif;
    color: #000000;
}

.about-hero-premium p {
    font-size: 1.5rem;
    color: #555555;
    font-family: sans-serif;
    max-width: 800px;
    margin-top: 20px;
}

.about-premium {
    width: 90%;
    margin: 50px auto;
    padding: 100px 50px;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.premium-title {
    font-size: 4.5rem;
    font-family: "Playfair Display", serif;
    color: #0b0b0b;
    margin-bottom: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}

.premium-desc p {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: sans-serif;
}

.premium-sign {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: #ff4925;
}

.premium-img-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #ccc;
}

.premium-img-wrapper::after {
    display: none;
}

.premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-img-wrapper:hover .premium-img {
    transform: scale(1.05);
}

@media (max-width: 1000px) {
    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero-premium h1 {
        font-size: 4rem;
    }

    .about-hero-premium p {
        font-size: 1.2rem;
    }

    .premium-title {
        font-size: 3rem;
    }

    .premium-img-wrapper {
        height: 400px;
    }
}