.magazine-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #000000;
}

.magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.magazine-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.magazine-item:hover {
    transform: translateY(-5px);
}

.magazine-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: #f8f8f8;
}

.magazine-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.magazine-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.magazine-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.magazine-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c8a97e;
}

.magazine-description {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
}

.magazine-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 2rem;
}

.magazine-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.magazine-header h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8a97e;
}

.magazine-header p {
    color: white;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .magazine-section {
        padding: 2rem 1rem;
    }

    .magazine-grid {
        gap: 2rem;
    }

    .magazine-image-container {
        padding: 1rem;
    }

    .magazine-header h1 {
        font-size: 2.5rem;
    }

    .magazine-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 576px) {
    .magazine-header h1 {
        font-size: 2rem;
    }

    .magazine-header p {
        font-size: 1rem;
    }
}