/* Uniguard Values Section Styles */

.uniguard-values-container {
    display: flex;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

/* Left Side: Values List */
.values-list {
    width: 50%;
    background-color: #f8f9fa;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 0;
    position: relative;
}

.value-item:hover {
    transform: translateX(5px);
}

.value-item.active {
    background-color: #F7C548;
    color: #1a1a2e;
}

.value-item:not(.active) {
    background-color: #1a1a2e;
    color: #ffffff;
}

.value-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border-right: 1px solid #ffffff;
    flex-shrink: 0;
}

.value-item.active .value-number {
    background-color: #1a1a2e;
    color: #ffffff;
}

.value-item:not(.active) .value-number {
    background-color: #F7C548;
    color: #ffffff;
}

.value-title {
    flex: 1;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side: Content Area */
.content-area {
    width: 50%;
    background-color: #ffffff;
    position: relative;
    overflow-y: auto;
}

.content-panel {
    display: none;
    padding: 40px;
    height: 100%;
    min-height: 100vh;
}

.content-panel.active {
    display: block;
}

.content-header {
    background-color: #F7C548;
    color: #1a1a2e;
    padding: 20px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.content-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-body {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.content-body p {
    margin-bottom: 20px;
}

/* Content with Image Layout */
.content-with-image {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0 0 300px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #F7C548;
    font-size: 20px;
    font-weight: bold;
}

.features-list li strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .uniguard-values-container {
        flex-direction: column;
    }
    
    .values-list,
    .content-area {
        width: 100%;
    }
    
    .values-list {
        padding: 20px 10px;
    }
    
    .content-panel {
        padding: 20px;
        min-height: auto;
    }
    
    .content-with-image {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .value-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .value-title {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .values-list {
        padding: 15px 5px;
    }
    
    .content-panel {
        padding: 15px;
    }
    
    .content-header {
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    
    .content-header h2 {
        font-size: 20px;
    }
    
    .value-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .value-title {
        padding: 12px 15px;
        font-size: 12px;
    }
}

/* Animation Effects */
.value-item {
    transition: all 0.3s ease;
}

.content-panel {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.value-item:hover .value-number {
    transform: scale(1.1);
}

.content-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
