/* Structure Section */
.structure {
    padding: 120px 0 80px;
    background: white;
}

.structure-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.structure-images {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
}

.structure-images-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.structure-image {
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 262px;
    height: 290px;
}

.structure-image:hover {
    transform: translateY(-5px);
}

.structure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.structure-image:hover img {
    transform: scale(1.05);
}

.structure-text {
    flex: 1;
    padding-left: 40px;
}

.structure-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D2450;
    margin-bottom: 25px;
}

.structure-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}