/* Variabel dan Reset */
:root {
    --primary-color: #006699;
    --secondary-color: #00aacc;
    --accent-color: #ff9900;
    --text-color: #333333;
    --light-color: #ffffff;
    --dark-color: #222222;
    --bg-light: #f7f9fc;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
}

/* Utilitas */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 153, 0.3);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.achievements {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    text-align: center;
}

.achievements li {
    list-style: none;
}

.achievements .number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.achievements .text {
    font-size: 16px;
    color: #666;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 100%;
    height: auto;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    color: #666;
}

/* Appointment Section */
.appointment-content {
    display: flex;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-info {
    flex: 1;
    padding: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.appointment-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.appointment-info p {
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-info {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item .icon {
    font-size: 24px;
    margin-right: 15px;
}

.appointment-form {
    flex: 1;
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    margin-top: 30px;
}

.form-submit .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.form-privacy {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Location Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.location-card p {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #666;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-color);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links a img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--light-color);
    text-decoration: none;
}

/* Animasi */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsif */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .appointment-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 70px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--light-color);
        width: 100%;
        height: calc(100vh - 70px);
        transition: all 0.3s ease;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: rgba(0, 153, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon img {
    width: 50px;
    height: 50px;
}

.thank-you-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-content .message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.confirmation-details {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.confirmation-details h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.user-details {
    text-align: left;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-item .label {
    flex: 0 0 150px;
    font-weight: 600;
}

.detail-item .value {
    flex: 1;
}

.next-steps {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.emergency-contact {
    background-color: rgba(255, 153, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.emergency-contact h3 {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.action-buttons {
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    background-color: #f1f1f1;
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Privacy Policy Page */
.privacy-section {
    padding: 120px 0 80px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.privacy-content .last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.privacy-intro {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.privacy-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-section-item {
    margin-bottom: 40px;
}

.privacy-section-item h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.privacy-section-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-section-item ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 5px;
}

/* Animasi tambahan */
.scrolled {
    background-color: var(--light-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.service-card, .location-card, .about-image, .about-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.service-card.animate, .location-card.animate, .about-image.animate, .about-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2), .location-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3), .location-card:nth-child(3) {
    transition-delay: 0.4s;
}

.service-card:nth-child(4) {
    transition-delay: 0.6s;
}

.service-card:nth-child(5) {
    transition-delay: 0.8s;
}

.service-card:nth-child(6) {
    transition-delay: 1s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.mobile-menu span:nth-child(1) {
    top: 0px;
}

.mobile-menu span:nth-child(2), .mobile-menu span:nth-child(3) {
    top: 9px;
}

.mobile-menu span:nth-child(4) {
    top: 18px;
}

.mobile-menu.active span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.mobile-menu.active span:nth-child(2) {
    transform: rotate(45deg);
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu.active span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .nav ul li a.btn-primary {
        display: inline-block;
        margin-top: 10px;
    }
    
    .thank-you-content, .privacy-content {
        padding: 30px 20px;
    }
    
    .detail-item {
        flex-direction: column;
    }
    
    .detail-item .label {
        flex: none;
        margin-bottom: 5px;
    }
}

/* Styles for Career Page */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--light-color);
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

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

.benefit-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.benefit-icon img {
    width: 100%;
    height: auto;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 15px;
    color: #666;
}

.jobs-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.jobs-filter select {
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    font-size: 16px;
    cursor: pointer;
    background-color: var(--light-color);
    width: 250px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.job-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-header h3 {
    font-size: 20px;
    color: var(--primary-color);
}

.job-type {
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.full-time {
    background-color: rgba(0, 153, 102, 0.1);
    color: #009966;
}

.part-time {
    background-color: rgba(255, 153, 0, 0.1);
    color: #ff9900;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
}

.job-location, .job-department, .job-date {
    display: flex;
    align-items: center;
}

.job-details .icon {
    margin-right: 8px;
    font-size: 18px;
}

.job-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.jobs-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.jobs-pagination a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.jobs-pagination a.active, .jobs-pagination a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #eee;
    z-index: 1;
}

.process-step {
    position: relative;
    width: 18%;
    text-align: center;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 14px;
    color: #666;
}

.stories-slider {
    display: flex;
    gap: 30px;
}

.story-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.story-image {
    height: 300px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.story-position, .story-years {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.story-quote {
    margin-top: 15px;
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
}

.contact-info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(0, 102, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 30px;
    height: 30px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Styles for News & Articles Page */
.news-filter {
    padding-bottom: 0;
}

.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    width: 400px;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    font-size: 16px;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.search-box button img {
    width: 20px;
    height: 20px;
}

.category-filter select {
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    font-size: 16px;
    cursor: pointer;
    width: 200px;
}

.featured-article {
    display: flex;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-image {
    flex: 0 0 50%;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.article-meta {
    margin-bottom: 15px;
}

.article-meta .category {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(0, 102, 153, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
}

.article-meta .date {
    color: #666;
    font-size: 14px;
}

.featured-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.featured-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.read-more:hover {
    border-bottom-color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a.active, .pagination a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tips-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.tip-card {
    flex: 0 0 300px;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(0, 102, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon img {
    width: 30px;
    height: 30px;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tip-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.newsletter-content {
    display: flex;
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    padding: 60px;
    color: var(--light-color);
    box-shadow: 0 10px 30px rgba(0, 102, 153, 0.3);
}

.newsletter-info {
    flex: 1;
    padding-right: 60px;
}

.newsletter-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter-info p {
    font-size: 16px;
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    display: flex;
    align-items: center;
}

.newsletter-form .form-group {
    width: 100%;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 150px 15px 20px;
    border-radius: 5px;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 10px 20px;
}

.newsletter-form .form-privacy {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.newsletter-form .form-privacy a {
    color: var(--light-color);
    text-decoration: underline;
}

/* Styles for Terms & Conditions Page */
.terms-section {
    padding: 120px 0 80px;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.terms-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.terms-content .last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.terms-intro {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.terms-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.terms-section-item {
    margin-bottom: 40px;
}

.terms-section-item h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.terms-section-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.terms-section-item ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-section-item ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 5px;
}

/* Responsive styles for new pages */
@media (max-width: 992px) {
    .featured-article {
        flex-direction: column;
    }
    
    .featured-image, .featured-content {
        flex: none;
        width: 100%;
    }
    
    .newsletter-content {
        flex-direction: column;
        padding: 40px;
    }
    
    .newsletter-info {
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .process-step {
        width: 30%;
        margin-bottom: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .stories-slider {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
    }
    
    .search-box {
        width: 100%;
    }
    
    .category-filter select {
        width: 100%;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex: 0 0 100%;
    }
    
    .process-step {
        width: 100%;
    }
    
    .terms-content, .privacy-content {
        padding: 30px 20px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
