/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #2e8b57; /* Sea Green */
    color: white;
}

.btn-primary:hover {
    background-color: #267349;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-call {
    background-color: #2e8b57; /* Sea Green */
    color: white;
}

.btn-call i {
    margin-right: 8px;
}

.btn-submit {
    background-color: #222;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 18px;
}

.btn-submit:hover {
    background-color: #000;
}

/* Navigation Bar */
.navbar {
    background-color: #1e5945; /* Dark Green */
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-text h2 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: linear-gradient(135deg, rgba(30, 89, 69, 0.8) 0%, rgba(46, 139, 87, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Quote Form Section */
.quote-section {
    padding: 60px 0;
    background-color: #fff;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
}

#insurance-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2e8b57;
    box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.1);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #666;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.consent-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.submit-group {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1e5945; /* Dark Green */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.feature-icon {
    font-size: 40px;
    color: #2e8b57; /* Sea Green */
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: #1e5945; /* Dark Green */
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e8 100%);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    padding: 20px;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-left: 4px solid #2e8b57;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    color: #1e5945; /* Dark Green */
    margin-bottom: 5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #1e5945; /* Dark Green */
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    color: #2e8b57;
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #2e8b57; /* Sea Green */
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e5945 0%, #2e8b57 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #133629; /* Darker Green */
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.link-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.link-column ul li a:hover {
    opacity: 1;
    color: #3cb371; /* Medium Sea Green - lighter for hover */
}

.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #3cb371; /* Medium Sea Green */
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #2e8b57; /* Sea Green */
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-bottom-links a {
    margin-left: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: #3cb371; /* Medium Sea Green */
}
.footerLinks{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .navbar .container {
        flex-direction: column;
    }
    
    .contact-button {
        margin-top: 15px;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
}


.privacyPage{ 
    padding: 200px 0px;
}

/* CCPA Privacy Page Styles */
.privacyPage {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.privacyPage.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.privacyPage .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Heading Styles */
.mainHeading {
    text-align: center;
    margin-bottom: 30px;
}

.mainHeading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e5945;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    margin-bottom: 25px;
}
.mainHeading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2e8b57, #3cb371);
    border-radius: 2px;
}

/* Introductory Text Styles */
.privacyPage p.text-center {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2e8b57;
}

/* Form Container */
#contactForm,#ccpaForm {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Row and Column Styles */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 25px;
}

/* Input Division Styles */
.inputDiv,
.inputDiv2 {
    position: relative;
}

.inputDiv label,
.inputDiv2 label {
    display: block;
    font-weight: 600;
    color: #1e5945;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Field Styles */
.inputDiv input,
.inputDiv select,
.inputDiv textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.inputDiv input:focus,
.inputDiv select:focus {
    outline: none;
    border-color: #2e8b57;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.inputDiv input::placeholder {
    color: #999;
    font-style: italic;
}

/* Select Dropdown Styles */
.inputDiv select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e8b57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Radio Button and Checkbox Container */
.flexDiv {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.elementor-field-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.elementor-field-option:hover {
    background-color: #e8f5e8;
    border-color: #2e8b57;
}

/* Custom Radio Button Styles */
.elementor-field-option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    position: relative;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.elementor-field-option input[type="radio"]:checked {
    border-color: #2e8b57;
    background-color: #2e8b57;
}

.elementor-field-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

/* Custom Checkbox Styles */
.elementor-field-option input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.elementor-field-option input[type="checkbox"]:checked {
    border-color: #2e8b57;
    background-color: #2e8b57;
}

.elementor-field-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Label Styles for Radio and Checkbox */
.elementor-field-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
    font-size: 15px;
}

/* Submit Button Styles */
.submitBtn {
    background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 20px;
}

.submitBtn:hover {
    background: linear-gradient(135deg, #267349 0%, #2e8b57 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.3);
}

.submitBtn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.2);
}

/* Margin Bottom Utility */
.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacyPage {
        padding: 60px 0;
    }
        .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .mainHeading h2 {
        font-size: 28px;
    }
    
    #contactForm {
        padding: 25px;
        margin-top: 20px;
    }
    
    .privacyPage p.text-center {
        padding: 20px;
        font-size: 15px;
    }
    
    .col-md-12 {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .inputDiv input,
    .inputDiv select {
        padding: 12px;
        font-size: 15px;
    }
    
    .submitBtn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .privacyPage .container {
        padding: 0 15px;
    }
    
    .mainHeading h2 {
        font-size: 24px;
    }
    
    #contactForm {
        padding: 20px;
    }
    
    .flexDiv {
        gap: 12px;
    }
    
    .elementor-field-option {
        padding: 12px;
    }
    
    .elementor-field-option label {
        font-size: 14px;
    }
}

/* Loading State for Form Submission */
.submitBtn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.submitBtn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Form Validation Styles */
.inputDiv input:invalid,
.inputDiv select:invalid {
    border-color: #dc3545;
}

.inputDiv input:valid,
.inputDiv select:valid {
    border-color: #28a745;
}

/* Error Message Styles */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.inputDiv.error .error-message {
    display: block;
}

.inputDiv.error input,
.inputDiv.error select {
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* Success Message Styles */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    margin-top: 20px;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Privacy Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #fff;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    overflow: hidden;
}

/* Table Header Styles */
table th {
    /* background: linear-gradient(135deg, #1e5945 0%, #2e8b57 100%); */
    color: white;
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid #133629;
    position: relative;
}

table th:first-child {
    width: 40%;
}

table th:nth-child(2),
table th:nth-child(3) {
    width: 30%;
}

/* Table Data Styles */
table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
    transition: background-color 0.3s ease;
}

/* Privacy Text Styles */
.privacy-text {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

table th .privacy-text {
    color: white;
    font-weight: 600;
}

/* Row Hover Effects */
table tbody tr:hover {
    background-color: #f8f9fa;
}

table tbody tr:hover td {
    background-color: #f8f9fa;
}

/* Alternating Row Colors */
table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* First Column Styling (Categories) */
table td:first-child {
    font-weight: 500;
    background-color: rgba(46, 139, 87, 0.05);
    border-right: 2px solid #e8f5e8;
}

table tbody tr:hover td:first-child {
    background-color: rgba(46, 139, 87, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    table {
        font-size: 12px;
        margin: 15px 0;
    }
    
    table th,
    table td {
        padding: 10px 8px;
    }
    
    .privacy-text {
        font-size: 12px;
    }
    
    /* Stack table on very small screens */
    @media screen and (max-width: 600px) {
        table, thead, tbody, th, td, tr {
            display: block;
        }
        
        table {
            box-shadow: none;
        }
        
        thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }
        
        tr {
            border: 1px solid #ccc;
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        td {
            border: none;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 25%;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        
        td:before {
            content: attr(data-label) ": ";
            position: absolute;
            left: 6px;
            width: 20%;
            padding-right: 10px;
            white-space: nowrap;
            font-weight: 600;
            color: #1e5945;
        }
        
        td:first-child {
            background-color: transparent;
            border-right: none;
        }
        
        td:first-child:before {
            content: "Category: ";
        }
        
        td:nth-child(2):before {
            content: "Disclosed to: ";
        }
        
        td:nth-child(3):before {
            content: "Sold to: ";
        }
    }
}

/* Print Styles */
@media print {
    table {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    table th {
        background: #f0f0f0 !important;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
    }
    
    table tbody tr:nth-child(even) {
        background-color: #f9f9f9 !important;
        -webkit-print-color-adjust: exact;
    }
}

/* Accessibility Improvements */
table th {
    cursor: default;
}

table td {
    word-wrap: break-word;
    word-break: break-word;
}

/* Focus styles for keyboard navigation */
table:focus-within {
    outline: 2px solid #2e8b57;
    outline-offset: 2px;
}

/* Loading state (optional) */
.table-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.table-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #2e8b57;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Table Caption (if needed) */
table caption {
    font-size: 18px;
    font-weight: 600;
    color: #1e5945;
    margin-bottom: 10px;
    text-align: left;
}

/* Scrollable table container for very wide tables */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table-container table {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}