:root {
    --primary-teal: #17A2B8;
    --primary-gradient: linear-gradient(135deg, #17A2B8 0%, #0f7c8d 100%);
    --dark-text: #1a1a1a;
    --light-bg: #f5f7fa;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(23, 162, 184, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family inherited from modern-theme.css */
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

/* Decorative Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(23, 162, 184, 0.03) 35px, rgba(23, 162, 184, 0.03) 70px);
    pointer-events: none;
    z-index: -1;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(23, 162, 184, 0.05));
    border-bottom: 1px solid var(--border-color);
    padding: 40px 20px;
}

.logo-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal), #0fa5a5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.2);
}

.logo-container i {
    font-size: 40px;
    color: var(--white);
}

.logo-container::after {
    content: '✓';
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--white);
    color: var(--primary-teal);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.header-title {
    font-size: 2.5rem;
    color: var(--primary-teal);
    font-weight: 700;
    margin: 20px 0 10px;
}

.header-subtitle {
    font-size: 1.3rem;
    color: #ff9500;
    font-weight: 500;
}

/* Main Content */
.main-content {
    padding: 60px 20px;
    min-height: 80vh;
}

/* Policy Cards */
.policy-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 35px;
    border: 1px solid rgba(23, 162, 184, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    z-index: -1;
}

.policy-card:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.policy-card:hover::before {
    width: 10px;
}

.card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(23, 162, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 24px;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    margin-top: 0;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.highlight {
    color: var(--primary-teal);
    font-weight: 600;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.feature-list li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--primary-teal);
    font-size: 14px;
}

/* Contact Email */
.contact-email {
    margin-top: 15px;
    padding: 12px;
    background: rgba(23, 162, 184, 0.05);
    border-radius: 8px;
}

.contact-email a {
    color: #0085ff;
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer Section */
.footer-section {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-text {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .policy-card {
        flex-direction: column;
        text-align: right;
        padding: 20px;
    }

    .card-icon {
        align-self: flex-start;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .main-content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 60px;
        height: 60px;
    }

    .logo-container i {
        font-size: 30px;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .header-subtitle {
        font-size: 0.9rem;
    }

    .policy-card {
        padding: 15px;
        gap: 15px;
    }

    .card-title {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-right {
    text-align: right;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}