/* Privacy Policy Page Specific Styles for SeatPro */

/* Privacy Banner Section */
.privacy-banner {
    background: linear-gradient(to right, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.85)), url('../images/website-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.privacy-banner .banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-banner h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.privacy-banner h2 span {
    color: var(--secondary-color);
}

.privacy-banner p {
    line-height: 1.8;
    opacity: 0.9;
    color: white;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.last-updated {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-light);
}

.last-updated p {
    color: var(--grey-color);
    margin: 0;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.policy-section h3 {
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
}

.policy-section p {
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

/* Highlight Section */
.highlight-section {
    background-color: rgba(58, 54, 224, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 2.5rem 0;
}

.highlight-section h2 {
    color: var(--primary-color);
}

.highlight-section h2::after {
    background-color: var(--light-color);
}

/* Privacy List */
.privacy-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.privacy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Information Cards */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(58, 54, 224, 0.03);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin: 0 0 0.7rem;
    color: var(--dark-color);
}

.info-content p {
    margin: 0;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.7rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.highlight-section a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.highlight-section a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

/* CTA Section */
.privacy-cta-section {
    background: linear-gradient(to right, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.85)), url('../images/website-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.privacy-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.privacy-cta-section .cta-content h2 {
    margin-bottom: 1.5rem;
    color: white;
}

.privacy-cta-section .cta-content h2 span {
    color: var(--secondary-color);
}

.privacy-cta-section .cta-content p {
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: white;
}

.privacy-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.privacy-cta-section .cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.privacy-cta-section .cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .privacy-content {
        padding: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    
    .privacy-content {
        padding: 20px;
    }
    
    .highlight-section {
        padding: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        gap: 0px;
    }
}

@media screen and (max-width: 480px) {    
    .privacy-content {
        border-radius: 8px;
    }
    
    .contact-info p{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap:10px;
    }
    
    .highlight-section {
        padding: 1.2rem;
    }
} 