/* CSS Variables */
:root {
    --primary-color: #FDB813;
    --primary-dark: #E5A50A;
    --secondary-color: #FDB813;
    --text-dark: #1a1a1a;
    --text-light: #999999;
    --white: #FFFFFF;
    --dark-bg: #1a1a1a;
    --dark-card: #2d2d2d;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

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

/* Navigation */
.navbar {
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--white);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-nav-register {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-nav-register:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.carousel-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 184, 19, 0.3);
    border: none;
    color: var(--white);
    font-size: 3rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(253, 184, 19, 0.5);
}

/* No banner overlay flag */
.no-banner-overlay .carousel-overlay {
    background: none;
}

.no-banner-overlay .carousel-overlay h1,
.no-banner-overlay .carousel-overlay p {
    display: none;
}

.no-banner-overlay .carousel-btn {
    display: none;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(253, 184, 19, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666666;
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-view-plans {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-view-plans:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

/* CTA Section */
.cta-section {
    background: var(--dark-card);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-register {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.3);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(253, 184, 19, 0.5);
    background: var(--primary-dark);
}

/* Careers Section */
.careers {
    padding: 5rem 0;
    background: var(--dark-card);
}

.careers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.careers-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.job-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(253, 184, 19, 0.2);
    border-color: rgba(253, 184, 19, 0.3);
}

.job-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.job-type,
.job-location {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(253, 184, 19, 0.15);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.job-requirements,
.job-offer {
    margin-bottom: 2rem;
}

.job-requirements h4,
.job-offer h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.job-requirements ul,
.job-offer ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li,
.job-offer li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.job-requirements li::before,
.job-offer li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-apply {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.3);
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(253, 184, 19, 0.5);
    background: var(--primary-dark);
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.info-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.location-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#map {
    height: 400px;
    width: 100%;
}

.btn-google-maps {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-google-maps::before {
    content: "📍";
    font-size: 1.1rem;
}

.btn-google-maps:hover {
    background: var(--primary-dark);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

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

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Members Page Styles */
.members-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.members-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.members-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pricing-badge {
    display: inline-block;
    background: rgba(253, 184, 19, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.pricing-period {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-savings {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.pricing-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
}

.btn-primary {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

.btn-popular {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 20px rgba(253, 184, 19, 0.3);
}

.btn-instructions-link {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-instructions-link:hover {
    background: rgba(253, 184, 19, 0.1);
    transform: translateX(5px);
}

/* Comparison Table */
.comparison-table {
    padding: 4rem 0;
    background: var(--dark-card);
}

.comparison-table h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--white);
}

.table-responsive {
    overflow-x: auto;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-bg);
    border-radius: 8px;
    overflow: hidden;
}

.comparison th,
.comparison td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison th {
    background: var(--dark-card);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.comparison td {
    color: var(--white);
}

.comparison tbody tr:hover {
    background: rgba(253, 184, 19, 0.05);
}

.comparison td:first-child {
    text-align: left;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--white);
}

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

.faq-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        margin-bottom: 0.5rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .btn-nav-register {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-carousel {
        height: 350px;
    }

    .carousel-overlay h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .carousel-overlay p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .carousel-overlay .container {
        padding: 0 70px;
    }

    .carousel-btn {
        font-size: 2rem;
        padding: 0.5rem 1rem;
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

    .features h2,
    .location h2,
    .careers h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .job-card {
        padding: 2rem;
    }

    .job-header h3 {
        font-size: 1.5rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .btn-google-maps {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        bottom: 15px;
    }

    /* Members page responsive */
    .members-header h1 {
        font-size: 2rem;
    }

    .members-header p {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .comparison-table h2,
    .faq h2 {
        font-size: 1.75rem;
    }

    .comparison {
        font-size: 0.85rem;
    }

    .comparison th,
    .comparison td {
        padding: 0.75rem 0.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 280px;
    }

    .carousel-overlay h1 {
        font-size: 1.25rem;
        line-height: 1.3;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .carousel-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .carousel-overlay .container {
        padding: 0 60px;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .language-switcher {
        gap: 0.25rem;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .btn-google-maps {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        bottom: 10px;
    }

    /* Members page responsive */
    .members-header h1 {
        font-size: 1.75rem;
    }

    .members-header p {
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .comparison {
        font-size: 0.75rem;
    }

    .comparison th,
    .comparison td {
        padding: 0.5rem 0.25rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .carousel-overlay h1 {
        font-size: 1.1rem;
    }

    .carousel-overlay p {
        font-size: 0.75rem;
    }

    .carousel-overlay .container {
        padding: 0 50px;
    }

    .carousel-btn {
        font-size: 1.25rem;
        padding: 0.4rem 0.6rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .btn-nav-register {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Instructions Page Styles */
.instructions-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.instructions-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.instructions-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Instruction Sections */
.instruction-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.instruction-section.alt-bg {
    background: var(--dark-card);
}

.instruction-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.instruction-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Instruction Steps */
.instruction-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.instruction-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
}

/* Phone Frame */
.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border: 8px solid #2d2d2d;
    border-radius: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    margin: 30px 0 20px 0;
}

/* Notch removed to prevent screenshot cutoff */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 0px;
    background: transparent;
    border-radius: 0 0 15px 15px;
    z-index: 20;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.phone-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.screenshot-placeholder p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Step Labels with Pointers */
.step-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.label-pointer {
    position: absolute;
    display: flex;
    align-items: center;
}

.label-pointer.label-top {
    top: 100px;
    right: -180px;
    flex-direction: row;
}

.label-pointer.label-middle {
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    flex-direction: row;
}

.label-pointer.label-bottom {
    bottom: 100px;
    right: -180px;
    flex-direction: row;
}

.pointer-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
}

.pointer-line::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--primary-color);
}

.label-text {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 10px;
    box-shadow: 0 2px 10px rgba(253, 184, 19, 0.3);
}

/* Step Description */
.step-description {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 280px;
}

.step-description h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-description p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Instructions */
@media (max-width: 1024px) {
    .instruction-steps {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .phone-frame {
        width: 320px;
        height: 640px;
    }

    .label-pointer.label-top,
    .label-pointer.label-middle,
    .label-pointer.label-bottom {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        bottom: -100px;
        top: auto;
    }

    .label-pointer.label-middle {
        transform: translateX(-50%);
    }

    .pointer-line {
        width: 2px;
        height: 40px;
    }

    .pointer-line::before {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid var(--primary-color);
    }

    .label-text {
        margin-left: 0;
        margin-top: 10px;
    }

    .step-description {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .instructions-header h1 {
        font-size: 2rem;
    }

    .instructions-header p {
        font-size: 1rem;
    }

    .instruction-section h2 {
        font-size: 1.75rem;
    }

    .instruction-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .instruction-steps {
        gap: 4rem;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 480px) {
    .instructions-header h1 {
        font-size: 1.75rem;
    }

    .instructions-header p {
        font-size: 0.9rem;
    }

    .instruction-section {
        padding: 3rem 0;
    }

    .instruction-section h2 {
        font-size: 1.5rem;
    }

    .instruction-intro {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
        border: 6px solid #2d2d2d;
        border-radius: 25px;
    }

    .phone-frame::before {
        width: 0px;
        height: 0px;
    }

    .label-text {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .step-description h3 {
        font-size: 1.1rem;
    }

    .step-description p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .label-text {
        font-size: 0.8rem;
    }
}
