/* VR DataHub Brand Colors */
:root {
    --vr-primary: #6C63FF;
    --vr-secondary: #4CAF50;
    --vr-accent: #FF6B6B;
    --vr-gold: #FFD700;
    --vr-dark: #2C3E50;
    --vr-light: #F8F9FA;
    --vr-gradient-1: linear-gradient(135deg, #6C63FF, #4CAF50);
    --vr-gradient-2: linear-gradient(45deg, #6C63FF, #FF6B6B);
    --vr-gradient-3: linear-gradient(135deg, #4CAF50, #FFD700);
}

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

a{
    text-decoration: none;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(138, 132, 132, 0.1);
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.logo-tagline {
    color: #ffd700;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(0, 0, 0, 0.6)), url('./images/heo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.1) 50%, transparent 51%);
    background-size: 30px 30px;
    animation: diagonalMove 25s linear infinite;
    pointer-events: none;
}

@keyframes diagonalMove {
    0% { transform: translateX(-30px) translateY(-30px); }
    100% { transform: translateX(30px) translateY(30px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.4rem;
    color: white;
    padding-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-info {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Seen on logos section */
.seen-on-section {
    margin: 30px 0;
    text-align: left;
}

.seen-on-text {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.logos-container {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-item {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Review rating section */
.review-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0 35px 0;
    text-align: left;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.half-star {
    position: relative;
    color: #666;
}

.half-star::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #ffd700;
}

.accolades-image {
    height: 35px;
    width: auto;
}

.rating-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    background: #ffd700;
    color: #333;
    border: 2px solid transparent;
    padding: 20px 45px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}


.cta-button:hover {
    transform: translateY(1px) scale(1.03);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-info {
        font-size: 1rem;
    }
    
    .logo-item {
        height: 35px;
    }
    
    .accolades-image {
        height: 30px;
    }
    
    .star {
        font-size: 1.2rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
    }
    
    .seen-on-text {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-info {
        font-size: 0.9rem;
    }
    
    .logo-item {
        height: 30px;
    }
    
    .accolades-image {
        height: 25px;
    }
    
    .star {
        font-size: 1rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .seen-on-text {
        font-size: 0.8rem;
    }
    
    .review-section {
        gap: 10px;
        margin: 20px 0 25px 0;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Getting Started Section */
.getting-started {
    background: white;
    padding: 80px 0;
    color: #333;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    background: #333;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes textGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-image {
    margin-bottom: 25px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.section-cta {
    text-align: center;
}

/* Responsive for Getting Started Section */
@media (max-width: 768px) {
    .getting-started {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .step {
        padding: 25px;
    }
    
    .step-image {
        width: 100px;
        height: 100px;
    }
    
    .step-img {
        width: 70px;
        height: 70px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .getting-started {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .steps-container {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .step {
        padding: 20px;
    }
    
    .step-image {
        width: 80px;
        height: 80px;
    }
    
    .step-img {
        width: 60px;
        height: 60px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}

/* Why Join Section */
.why-join {
    background: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.benefit-icon {
    margin-bottom: 20px;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.remote-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.clock-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.lightning-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 10V3L4 14h7v7l9-11h-7z'/%3E%3C/svg%3E");
}

.payment-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z'/%3E%3C/svg%3E");
}

.projects-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10'/%3E%3C/svg%3E");
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Why Join Section */
@media (max-width: 768px) {
    .why-join {
        padding: 60px 0;
    }
    
    .benefits-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-join {
        padding: 40px 0;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
}

/* Job Description Section */
.job-description {
    background: white;
    padding: 80px 0;
    color: #333;
}

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

.job-intro {
    margin-bottom: 50px;
}

.job-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.job-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.detail-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.job-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item .benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    margin-bottom: 0;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.peso-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2328a745'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1'/%3E%3C/svg%3E");
}

.home-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6'/%3E%3C/svg%3E");
}

.project-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5H7a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01'/%3E%3C/svg%3E");
}

.flexible-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.benefit-info {
    flex: 1;
}

.benefit-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
    line-height: 1;
}

.benefit-period {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.benefit-note {
    font-size: 0.9rem;
    color: #888;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.benefit-subtitle {
    font-size: 1rem;
    color: #666;
}

.job-cta {
    text-align: center;
}

/* Responsive for Job Description */
@media (max-width: 768px) {
    .job-description {
        padding: 60px 0;
    }
    
    .job-subtitle {
        font-size: 1.5rem;
    }
    
    .job-text {
        font-size: 1rem;
    }
    
    .job-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-item .benefit-icon {
        width: 50px;
        height: 50px;
        background-size: 25px 25px;
    }
    
    .benefit-amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .job-description {
        padding: 40px 0;
    }
    
    .job-subtitle {
        font-size: 1.3rem;
    }
    
    .job-text {
        font-size: 0.95rem;
    }
    
    .detail-title {
        font-size: 1.2rem;
    }
    
    .detail-list li {
        font-size: 0.9rem;
    }
    
    .job-benefits {
        padding: 20px 15px;
    }
    
    .benefit-item {
        padding: 15px;
        gap: 15px;
    }
    
    .benefit-item .benefit-icon {
        width: 45px;
        height: 45px;
        background-size: 22px 22px;
    }
    
    .benefit-amount {
        font-size: 1.3rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-subtitle {
        font-size: 0.9rem;
    }
}

/* Work Types Section */
.work-types {
    background: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.work-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.work-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.work-image {
    flex-shrink: 0;
    width:300px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-content {
    flex: 1;
}

.work-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.work-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.work-cta {
    text-align: center;
}

/* Responsive for Work Types */
@media (max-width: 768px) {
    .work-types {
        padding: 60px 0;
    }
    
    .work-cards {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .work-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .work-image {
        width: 100px;
        height: 100px;
    }
    
    .work-title {
        font-size: 1.2rem;
    }
    
    .work-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .work-types {
        padding: 40px 0;
    }
    
    .work-cards {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .work-card {
        padding: 20px;
        gap: 15px;
    }
    
    .work-image {
        width: 80px;
        height: 80px;
    }
    
    .work-title {
        font-size: 1.1rem;
    }
    
    .work-description {
        font-size: 0.85rem;
    }
}

/* Security Section */
.security-privacy {
    background: white;
    padding: 80px 0;
    color: #333;
}

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

.security-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.security-icon {
    margin-bottom: 20px;
}

.shield-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'/%3E%3C/svg%3E");
}

.lock-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z'/%3E%3C/svg%3E");
}

.payment-secure-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z'/%3E%3C/svg%3E");
}

.security-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.security-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Security Section */
@media (max-width: 768px) {
    .security-privacy {
        padding: 60px 0;
    }
    
    .security-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .security-card {
        padding: 30px 20px;
    }
    
    .security-title {
        font-size: 1.2rem;
    }
    
    .security-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .security-privacy {
        padding: 40px 0;
    }
    
    .security-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-card {
        padding: 25px 20px;
    }
    
    .security-title {
        font-size: 1.1rem;
    }
    
    .security-description {
        font-size: 0.85rem;
    }
}

/* Success Stories Section */
.success-stories {
    background: white;
    padding: 80px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.success-stories .container {
    position: relative;
    z-index: 2;
}

.success-stories .section-title {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.success-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.testimonials-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e9ecef;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.quote-mark {
    font-size: 3rem;
    color: #ffd700;
    font-family: serif;
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.testimonial-card:not(.featured) .quote-mark {
    font-size: 2rem;
    margin-bottom: 12px;
}

.testimonial-card:not(.featured) .testimonial-text {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.testimonial-card:not(.featured) .testimonial-author {
    font-size: 0.9rem;
    margin-top: 12px;
}

/* Responsive for Success Stories */
@media (max-width: 768px) {
    .success-stories {
        padding: 60px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }
    
    .testimonial-card.featured {
        grid-row: auto;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .testimonial-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .success-stories {
        padding: 40px 0;
    }
    
    .success-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .stats-container {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .testimonials-container {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .quote-mark {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-card:not(.featured) .quote-mark {
        font-size: 2rem;
    }
    
    .testimonial-card:not(.featured) .testimonial-text {
        font-size: 0.85rem;
    }
}

/* Application Form Section */
.application-form {
    background: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.application-form-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: #ffd700;
}

.checkbox-label.terms {
    font-size: 0.9rem;
    line-height: 1.5;
}

.terms-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Responsive for Application Form */
@media (max-width: 768px) {
    .application-form {
        padding: 60px 0;
    }
    
    .application-form-content {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .submit-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .application-form {
        padding: 40px 0;
    }
    
    .application-form-content {
        padding: 20px;
        border-radius: 15px;
    }
    
    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .checkbox-group {
        gap: 12px;
    }
    
    .submit-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
    color: #333;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid transparent;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.faq-item.active::before {
    opacity: 1;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent);
}

.faq-question {
    background: #f8f9fa;
    padding: 25px 30px;
    cursor: pointer !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-item.active .faq-question {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #ffd700;
    color: white;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #e9ecef;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        width: 25px;
        height: 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: white;
    color: #333;
    padding: 60px 0 20px;
}

.footer .container {
    max-width: 1200px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.contact-info strong {
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* About Page Styles */
.about-hero {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(0, 0, 0, 0.6));
    height: 300px;  
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    background: white;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-us {
    background: #f8f9fa;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(0);
}

.feature-card .benefit-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.our-story {
    background: white;
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffd700;
    color: #333;
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #333;
}

.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.join-cta {
    background: #333;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.join-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.join-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Contact Page Styles */
.contact-hero {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(0, 0, 0, 0.6));
    height: 350px; 
}

.contact-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-form .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffd700;
    border-color: #ffd700;
}

.contact-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #333;
    font-weight: bold;
    font-size: 12px;
}

.contact-form .terms-link {
    color: #ffd700;
    text-decoration: none;
}

.contact-form .terms-link:hover {
    text-decoration: underline;
}

.contact-form .submit-button {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .submit-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Terms Page Styles */
.terms-hero {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(0, 0, 0, 0.6));
    height: 300px;
}

.terms-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.terms-subtitle {
    font-size: 1.3rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.terms-content {
    background: white;
    padding: 80px 0;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.terms-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

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

.terms-section li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.terms-footer {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.terms-footer p {
    margin-bottom: 10px;
    color: #666;
}

.terms-footer strong {
    color: #333;
}

/* Responsive Terms Page */
@media (max-width: 768px) {
    .terms-hero {
        padding: 100px 0 60px;
        height: 250px;
    }
    
    .terms-title {
        font-size: 2.2rem;
    }
    
    .terms-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-container {
        padding: 0 20px;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(0, 0, 0, 0.6));
    height: 300px;
}

.privacy-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-subtitle {
    font-size: 1.3rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.privacy-content {
    background: white;
    padding: 80px 0;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.privacy-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

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

.privacy-section li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.privacy-footer {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.privacy-footer p {
    margin-bottom: 10px;
    color: #666;
}

.privacy-footer strong {
    color: #333;
}

/* Responsive Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
        height: 250px;
    }
    
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-container {
        padding: 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}
