/* Pages CSS - Styles for Terms, Privacy, Careers, and Sitemap pages */

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    background-color: var(--gray-100);
}

.content-wrapper {
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-top: 30px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.content-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-block ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.content-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.content-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-block a:hover {
    color: var(--accent-color);
}

/* Careers Page Specific Styles */
.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.culture-value {
    background-color: var(--gray-100);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-value:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.culture-value .icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.culture-value .icon i {
    font-size: 24px;
    color: var(--light-color);
}

.culture-value h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.culture-value p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit {
    background-color: var(--gray-100);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit .icon i {
    font-size: 20px;
    color: var(--light-color);
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-card {
    background-color: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-header {
    background-color: var(--primary-color);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.job-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-color);
    margin: 0;
}

.job-location {
    font-size: 0.9rem;
    color: var(--gray-300);
    display: flex;
    align-items: center;
}

.job-location i {
    margin-right: 5px;
}

.job-details {
    padding: 25px;
}

.job-details p {
    margin-bottom: 20px;
}

.job-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.job-details ul {
    margin-bottom: 25px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-color);
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Sitemap Page Specific Styles */
.sitemap-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.sitemap-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sitemap-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.sitemap-list {
    list-style: none;
    margin-left: 0;
}

.sitemap-list li {
    margin-bottom: 15px;
    padding-left: 0;
}

.sitemap-list li::before {
    display: none;
}

.sitemap-list li a {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.sitemap-list li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.sitemap-list li a:hover {
    color: var(--accent-color);
}

.sitemap-list li a:hover::before {
    transform: translateX(5px);
}

.sitemap-list ul {
    margin-top: 10px;
    margin-left: 20px;
}

.sitemap-list ul li {
    margin-bottom: 8px;
}

.sitemap-list ul li a {
    font-size: 0.9rem;
    font-weight: 400;
}

.social-sitemap li a {
    display: flex;
    align-items: center;
}

.social-sitemap li a i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-content {
        padding: 100px 0 60px;
    }
    
    .content-wrapper {
        padding: 25px;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .culture-values,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-location {
        margin-top: 10px;
    }
    
    .sitemap-container {
        grid-template-columns: 1fr;
    }
} 