.prim {
    font-family: "Ruda", sans-serif;
    color: #928f88;
    height: 100vh;
    max-width: 1600px;
        margin: 0 auto;

}

.layout-container {
    display: flex;
    height: 100%;
    position: relative;
}

.left-column, .right-column {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.center-column {
    flex: 0 0 auto;
    width: 40%; 
    position: relative;
    background: transparent; 
    z-index: 1; 
    overflow: visible; 
}

.full-height-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 120%; 
    height: 100%;
    max-width: none; 
    object-fit: contain; 
    z-index: 0; 
    pointer-events: none; 
}
.hero {
    background: #5d5855;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.content-block {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.content-block h2 {
                font-family: "Rubik Mono One", monospace;
    color: #5d5855;

}
@media (max-width: 1200px) {
    .center-column {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .layout-container {
        flex-direction: column;
    }
    
    .center-column {
        width: 100%;
        height: 300px;
    }
    
    .left-column, .right-column {
        padding: 20px;
    }
}


