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

body {
    font-family: 'Sarabun', 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #D4AF37;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></svg>');
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: #D4AF37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-features {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #D4AF37;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F4E4A1);
    color: #000000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #D4AF37;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Positions Section */
.positions {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.position-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.position-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.position-card.featured {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.position-card.premium {
    border-color: #FFD700;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.position-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
}

.position-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.position-card h3 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 400;
}

.salary-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.base-salary {
    margin-bottom: 1rem;
}

.amount {
    font-size: 3rem;
    font-weight: 600;
    color: #D4AF37;
}

.currency {
    font-size: 1.2rem;
    color: #cccccc;
    margin-left: 0.5rem;
}

.commission {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plus {
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: bold;
}

.commission-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D4AF37;
}

.commission-text {
    color: #cccccc;
}

.position-description {
    margin-bottom: 2rem;
}

.position-description p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.position-benefits {
    text-align: left;
}

.benefit-item {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* TAG System Section */
.tag-system {
    background: #000000;
}

.tag-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tag-highlight {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #4CAF50;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.tag-highlight .tag-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.tag-highlight h3 {
    color: #4CAF50;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.tag-highlight p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
}

.tag-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tag-option {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
}

.tag-option:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.tag-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tag-option h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.tag-option p {
    color: #cccccc;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info {
    background: #000000;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 400;
}

.contact-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-action {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-action span {
    color: #D4AF37;
    font-weight: 500;
}

.qr-code-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.show-qr-btn {
    background: linear-gradient(135deg, #D4AF37, #F4E4A1);
    color: #000000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: 'Sarabun', sans-serif;
}

.show-qr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.qr-code-hidden {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.qr-code-hidden.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.qr-code {
    width: 120px !important;
    height: 120px !important;
    max-width: 120px !important;
    max-height: 120px !important;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 2px solid #D4AF37;
    object-fit: contain;
}

.qr-text {
    color: #D4AF37;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.visit-info {
    max-width: 800px;
    margin: 0 auto;
}

.visit-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #D4AF37;
    text-align: center;
}

.visit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.visit-card h3 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 400;
}

.address {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.address p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.address strong {
    color: #D4AF37;
}

.hours {
    margin-bottom: 2rem;
}

.hours p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.hours strong {
    color: #D4AF37;
}

.instruction {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.instruction p:last-child {
    color: #cccccc;
    margin: 0;
}

/* Requirements Section */
.requirements {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.requirement-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.requirement-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.requirement-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333333;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-section a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

.footer-link {
    color: #D4AF37;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #333;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn-primary, .btn-secondary {
        width: 80%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .hero-features {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 2rem;
    }

    .feature-item {
        font-size: 0.8rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Positions Grid Mobile */
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }


    .position-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .position-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .position-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .salary-info {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .amount {
        font-size: 2rem;
    }

    .currency {
        font-size: 1rem;
    }

    .commission-amount {
        font-size: 1.2rem;
    }

    .position-description p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .position-benefits {
        margin-top: 1rem;
    }

    .benefit-item {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
    }

    /* TAG System Mobile */
    .tag-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .tag-highlight {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .tag-highlight h3 {
        font-size: 2rem;
    }

    .tag-highlight p {
        font-size: 1rem;
    }

    .tag-option {
        padding: 1.5rem;
    }

    .tag-option h4 {
        font-size: 1.3rem;
    }

    .tag-option p {
        font-size: 0.9rem;
    }

    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Contact Info Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
    
    .qr-code-container {
        margin: 1rem 0;
        padding: 0.8rem;
    }
    
    .show-qr-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .qr-text {
        font-size: 0.8rem;
    }
    
    .qr-code {
        width: 100px !important;
        height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }

    .visit-info {
        padding: 0 1rem;
    }

    .visit-card {
        padding: 2rem 1.5rem;
    }

    .visit-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .address {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .address p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hours p {
        font-size: 0.9rem;
    }

    .instruction {
        padding: 1.5rem;
    }

    .highlight {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    /* Requirements Mobile */
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .requirement-card {
        padding: 1.5rem;
    }

    .requirement-card h3 {
        font-size: 1.3rem;
    }

    .requirement-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 1rem;
        line-height: 1.4;
    }

    /* General Mobile Improvements */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    /* Floating Button Mobile */
    .floating-contact-btn {
        bottom: 1rem !important;
        right: 1rem !important;
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
    }

    .floating-contact-btn span {
        display: none;
    }

    .floating-contact-btn::after {
        content: 'สมัครงาน';
        margin-left: 0.5rem;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }


    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .position-card {
        padding: 1rem;
    }

    .amount {
        font-size: 1.8rem;
    }

    .position-card h3 {
        font-size: 1.3rem;
    }

    .tag-option,
    .benefit-card,
    .requirement-card,
    .contact-card {
        padding: 1rem;
    }
    
    .qr-code-container {
        margin: 0.8rem 0;
        padding: 0.6rem;
    }
    
    .show-qr-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .qr-text {
        font-size: 0.7rem;
    }
    
    .qr-code {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
    }

    .visit-card {
        padding: 1.5rem 1rem;
    }

    .visit-card h3 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .hero-features {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .feature-item {
        font-size: 0.7rem;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    /* Ultra small screens */
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .floating-contact-btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .floating-contact-btn::after {
        content: 'สมัคร';
        font-size: 0.7rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
}