.ikea-page {
    --gold: #9e8a5d;
    --dark-bg: #2d3134;
    --light-grey: #f4f4f4;
    --white: #ffffff;
}

/* Hero Section */
.ikea-page .hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 40%, #4a4e51 100%);
    color: var(--white);
    padding: 80px 10%;
    overflow: hidden;
}

.ikea-page .hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: var(--gold);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.8;
    z-index: 1;
}

.ikea-page .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ikea-page h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ikea-page .hero p {
    font-size: 1.2rem;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

/* Section Styling */
.ikea-page section {
    padding: 60px 10%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.ikea-page section:nth-child(even) {
    background-color: var(--light-grey);
    flex-direction: row-reverse;
}

.ikea-page .content-box {
    flex: 1;
}

.ikea-page .image-box {
    flex: 1;
    height: 350px;
    background: #ccc;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--gold);
    overflow: hidden;
}

.ikea-page .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ikea-page h2 {
    color: var(--dark-bg);
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.ikea-page h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-top: 10px;
}

.ikea-page .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #535356;
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}

.ikea-page .btn:hover {
    background: var(--gold);
}

.ikea-page .cta-banner {
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 40px;
}

.ikea-page .phone {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
}