/* Privacy Policy Hero Section */
.privacy-hero {
    background-color: var(--primary-color);
    padding: 80px 0 60px 0;
    color: #fff;
    text-align: center;
}

.privacy-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.privacy-hero-content h1 i {
    font-size: 2.8rem;
    color: #38b6ff;
}

.privacy-hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Privacy Policy Content */
.privacy-content {
    padding: 60px 0;
    background: #f8fafc;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Center the last card when it's alone in a row (for odd number of cards) */
.privacy-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
}

.privacy-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 60, 114, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.privacy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.12);
}

.privacy-card-header {
    background: linear-gradient(135deg, #38b6ff 0%, #2a5298 100%);
    color: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.privacy-card-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.privacy-card-body {
    padding: 2rem;
}

.privacy-card-body p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-card-body p:last-child {
    margin-bottom: 0;
}

.privacy-card-body a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-card-body a:hover {
    color: #38b6ff;
    text-decoration: underline;
}

/* Privacy Contact Section */
.privacy-contact {
    background-color: var(--light-background);
    padding: 60px 0;
    text-align: center;
}

.privacy-contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.privacy-contact-content h2 i {
    color: #38b6ff;
}

.privacy-contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-contact .btn {
    background: #38b6ff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid #38b6ff;
}

.privacy-contact .btn:hover {
    background: transparent;
    color: #38b6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}


