/* Section Layout */
.unique-section {
    position: relative;
    padding: 0;
    margin: 0;
    background-color: #fff;
    overflow: hidden;
    min-height: 200px;
}

/* Arrow Container Positioning */
.unique-arrow-container {
    position: absolute;
    top: 0;
    height: 100%;
    width: 200px;
}

.unique-arrow-left {
    left: 0;
}

.unique-arrow-right {
    right: 0;
}

/* Trapezoid Base Styles */
.unique-trapezoid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: #c41230;
}

.unique-trapezoid-short {
    position: absolute;
    bottom: 45px;
    width: 70%;
    height: 25px;
    background: #c41230;
}

/* Custom Trapezoid for Arrows */
.unique-arrow-trapezoid.unique-trapezoid {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.unique-arrow-trapezoid.unique-trapezoid-short {
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.unique-arrow-right .unique-arrow-trapezoid.unique-trapezoid {
    clip-path: polygon(0 100%, 15% 0, 100% 0, 100% 100%);
}

.unique-arrow-right .unique-arrow-trapezoid.unique-trapezoid-short {
    right: 0;
    clip-path: polygon(0 100%, 15% 0, 100% 0, 100% 100%);
}

/* Title Space Styling */
.unique-title-space {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
    right: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 100%;
}

.unique-title-space h2 {
    margin: 0;
    padding: 0;
    font-size: 32px;
    color: #c41230;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.unique-title-space h3 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #666;
    font-weight: normal;
    max-width: 600px;
    line-height: 1.4;
}

/* Content Layout & Styling */
.unique-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 220px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .unique-content {
        padding: 0 180px;
    }
    .unique-title-space {
        left: 150px;
        right: 150px;
    }
    
    .unique-title-space h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .unique-content {
        padding: 0 120px;
    }
    
    .unique-arrow-container {
        width: 100px;
    }

    .unique-arrow-trapezoid {
        width: 100px;
        clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 0 100%);
    }

    .unique-arrow-right .unique-arrow-trapezoid {
        clip-path: polygon(25px 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .unique-trapezoid-short {
        width: 60%;
    }

    .unique-title-space {
        left: 100px;
        right: 100px;
    }
    
    .unique-title-space h2 {
        font-size: 24px;
    }
    
    .unique-title-space h3 {
        font-size: 14px;
    }
} 