/* Privacy Policy Custom Styles */
.privacy-policy-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f4 100%);
    min-height: 100vh;
}

.breadcrumb-area.policy-breadcrumb {
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.breadcrumb-area.policy-breadcrumb .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 142, 142, 0.85) 0%, rgba(21, 128, 128, 0.85) 50%, rgba(16, 112, 112, 0.9) 100%);
    z-index: 1;
}

.breadcrumb-area.policy-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-area.policy-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 2;
}

.breadcrumb-area.policy-breadcrumb .breadcrumb-content {
    position: relative;
    z-index: 3;
}

.privacy-intro-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin: 80px auto 50px;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(26, 142, 142, 0.15);
    position: relative;
    z-index: 10;
}

.privacy-intro-card .intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a8e8e 0%, #158080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(26, 142, 142, 0.3);
}

.privacy-intro-card .intro-icon i {
    color: white;
    font-size: 36px;
}

.privacy-intro-card h3 {
    color: #1a8e8e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-intro-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0;
}

.privacy-content-section {
    padding: 60px 0 100px;
}

.privacy-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #1a8e8e;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 142, 142, 0.15);
}

.policy-card h1,
.policy-card h2,
.policy-card h3,
.policy-card h4 {
    color: #1a8e8e;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}

.policy-card h1 { font-size: 32px; }
.policy-card h2 { font-size: 26px; }
.policy-card h3 { font-size: 22px; }
.policy-card h4 { font-size: 18px; }

.policy-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-card ul,
.policy-card ol {
    margin-bottom: 20px;
    padding-left: 0;
}

.policy-card ul li,
.policy-card ol li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
}

.policy-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #1a8e8e 0%, #158080 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.policy-card ol {
    counter-reset: item;
}

.policy-card ol li {
    counter-increment: item;
}

.policy-card ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #1a8e8e 0%, #158080 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.policy-card strong {
    color: #1a8e8e;
    font-weight: 600;
}

.policy-card a {
    color: #1a8e8e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-card a:hover {
    color: #158080;
}

.policy-highlight {
    background: linear-gradient(135deg, #e8f4f4 0%, #d4eded 100%);
    border-left: 4px solid #1a8e8e;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.policy-highlight h4 {
    color: #1a8e8e;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-highlight p {
    margin-bottom: 0;
    color: #555;
}

/* Table Styling */
.policy-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.policy-card table thead {
    background: linear-gradient(135deg, #1a8e8e 0%, #158080 100%);
}

.policy-card table thead th {
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.policy-card table tbody tr {
    border-bottom: 1px solid #e8f4f4;
}

.policy-card table tbody tr:last-child {
    border-bottom: none;
}

.policy-card table tbody td {
    padding: 15px;
    color: #555;
}

.policy-card table tbody tr:hover {
    background: #f5f7fa;
}

/* Contact CTA Section */
.policy-contact-cta {
    background: linear-gradient(135deg, #1a8e8e 0%, #158080 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 20px 60px rgba(26, 142, 142, 0.3);
}

.policy-contact-cta h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.policy-contact-cta .btn-contact {
    background: white;
    color: #1a8e8e;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.policy-contact-cta .btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #1a8e8e;
}

/* Last Updated Badge */
.last-updated {
    display: inline-block;
    background: #f5f7fa;
    color: #666;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
}

.last-updated i {
    color: #1a8e8e;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-intro-card {
        padding: 30px 20px;
        margin: -60px 15px 30px;
    }

    .policy-card {
        padding: 25px 20px;
    }

    .policy-contact-cta {
        padding: 30px 20px;
    }

    .breadcrumb-area.policy-breadcrumb {
        padding: 60px 0 80px;
    }
}



