/* Company Information Page Styles - Matching TOS Design */

.policy-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: transparent;
    border-bottom: 1px solid rgba(29, 184, 87, 0.2);
    position: relative;
    z-index: 1;
}

.policy-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.policy-hero h1,
.about-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2dd475 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-meta,
.about-hero-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-section {
    background: transparent;
    border: 1px solid rgba(29, 184, 87, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(29, 184, 87, 0.15);
    transform: translateY(-2px);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-number {
    background: rgba(29, 184, 87, 0.1);
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.policy-section li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.policy-section li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.policy-section a,
.company-section a,
.info-box a,
.warning-box a,
.contact-section a,
.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.policy-section a:hover,
.company-section a:hover,
.info-box a:hover,
.warning-box a:hover,
.contact-section a:hover,
.policy-content a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.policy-section a:visited,
.company-section a:visited,
.info-box a:visited,
.warning-box a:visited,
.policy-content a:visited {
    color: var(--primary-color);
}

.warning-box {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box h3 {
    color: #ff3b30;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box {
    background: rgba(29, 184, 87, 0.1);
    border: 1px solid rgba(29, 184, 87, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-section {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-top: 3rem;
}

.contact-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Company-specific sections */
.company-section {
    background: transparent;
    border: 1px solid rgba(29, 184, 87, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.company-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(29, 184, 87, 0.15);
    transform: translateY(-2px);
}

.company-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.company-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.company-section li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.company-section li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.company-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Icon styles for sections */
.section-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .policy-hero h1,
    .about-hero-title {
        font-size: 2rem;
    }

    .policy-section,
    .company-section {
        padding: 1.5rem;
    }

    .policy-content {
        padding: 40px 15px;
    }
}
