/* Alternative Styles for Policies Section */
.policies-section {
    padding: 60px 0;
    background: #f5f7fa; /* Light gray-blue background */
    font-family: 'Roboto', 'Arial', sans-serif;
}

.policies-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.policies-section .section-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.policies-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff6f61; /* Coral accent color */
    margin: 10px auto 0;
}

.policies-section .policy-content {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 30px;
    position: relative; /* For absolute positioning of buttons */
}

.policies-section .tab-buttons {
    display: none; /* Still hidden as per original */
}

.policies-section .tab-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.policies-section .tab-btn:hover,
.policies-section .tab-btn.active {
    background-color: #ff6f61;
    color: #fff;
    border-color: #ff6f61;
}

.policies-section .tab-content {
    display: block !important; /* Remains visible as per original */
}

.policies-section .tab-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.policies-section .tab-content h4 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin: 20px 0 10px;
}

.policies-section .tab-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policies-section .tab-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.policies-section .tab-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.policies-section .scrollable-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 60px; /* Space for buttons */
    scrollbar-width: thin;
    scrollbar-color: #ff6f61 #e0e0e0;
}

.policies-section .scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.policies-section .scrollable-content::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

.policies-section .scrollable-content::-webkit-scrollbar-thumb {
    background: #ff6f61;
    border-radius: 3px;
}

.policies-section .scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #e65b50;
}

/* Button Container Styling */
.policies-section .button-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 10; /* Ensure buttons are above other content */
}

.policies-section .button-container button {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.policies-section .button-container button#later-btn {
    background: #d3d3d3; /* Light gray for Later button */
    color: #333;
}

.policies-section .button-container button#later-btn:hover {
    background: #b0b0b0;
    transform: translateY(-2px);
}

.policies-section .button-container button#accept-btn {
    background: #ff6f61; /* Coral for Accept button */
    color: #fff;
}

.policies-section .button-container button#accept-btn:hover {
    background: #e65b50;
    transform: translateY(-2px);
}