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

body {
    font-family: 'Georgia', serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

nav {
    background: #000;
    border-bottom: 1px solid #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo img.color-logo {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

main {
    margin-top: 80px;
    min-height: 100vh;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.tagline {
    font-size: 1.3rem;
    color: #888;
    letter-spacing: 2px;
}

.placeholder {
    color: #666;
    font-style: italic;
}

/* Home page specific */
#home-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Form styles */
.form-container {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #b0b0b0;
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #e0e0e0;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #666;
}

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

button {
    background: #fff;
    color: #000;
    padding: 1rem 3rem;
    border: none;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

button:hover {
    background: #e0e0e0;
}

.success-message {
    display: none;
    padding: 1rem;
    background: #1a4d1a;
    border: 1px solid #2d7a2d;
    margin-top: 1rem;
    text-align: center;
}

/* Gallery styles - horizontal scrolling layout */
.gallery {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.gallery img {
    height: 400px;
    width: auto;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    scroll-snap-align: start;
}

.gallery img:hover {
    transform: scale(1.01);
    border-color: #666;
}

.gallery-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Custom scrollbar for gallery */
.gallery::-webkit-scrollbar {
    height: 8px;
}

.gallery::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.gallery::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.gallery::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #999;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #666;
    color: #fff;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #000;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        gap: 0;
        border-top: 1px solid #333;
    }

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

    .nav-links li {
        padding: 1.5rem 0;
        border-bottom: 1px solid #333;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo img {
        height: 35px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }

    .gallery {
        gap: 1rem;
    }

    .gallery img {
        height: 300px;
    }

    .close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }

    .lightbox-nav {
        padding: 0 1rem;
    }

    .lightbox-nav button {
        font-size: 1.5rem;
        padding: 0.7rem 1rem;
    }
}
/* Additional styles for home page */
#home-main {
    display: block;
    text-align: left;
}

.hero {
    text-align: center;
    padding: 4rem 0 6rem;
    border-bottom: 1px solid #333;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero .tagline {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 1px;
}

.welcome {
    margin-bottom: 5rem;
}

.welcome h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.features {
    margin-bottom: 5rem;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border: 1px solid #333;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #666;
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

.services {
    margin-bottom: 5rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-item {
    background: #0f0f0f;
    padding: 2rem;
    border: 1px solid #333;
    text-align: center;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.service-item p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.8rem 2rem;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.btn:hover {
    background: #000;
    color: #fff;
}

.why-choose {
    margin-bottom: 5rem;
    background: #1a1a1a;
    padding: 3rem;
    border: 1px solid #333;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-choose ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose li {
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 1.1rem;
}

.why-choose li:last-child {
    border-bottom: none;
}

.why-choose strong {
    color: #fff;
}

.investment {
    margin-bottom: 5rem;
}

.investment h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.investment > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    background: #0f0f0f;
    padding: 3rem 2rem;
    border: 1px solid #333;
    text-align: center;
}

.price-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.price-item .price {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta {
    background: #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid #333;
}

.cta h2 {
    margin-bottom: 1.5rem;
    border: none;
    padding-bottom: 0;
}

.cta > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

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

.btn-primary {
    background: #fff;
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #e0e0e0;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

.footer-section em {
    color: #999;
    font-style: italic;
}

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

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

.footer-section ul a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
}

/* Mobile responsive for home page */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .feature-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .why-choose {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* About page styles */
.about-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #1a1a1a;
    border-left: 3px solid #fff;
}

.about-section {
    margin-bottom: 4rem;
}

.experience-block,
.philosophy-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border: 1px solid #333;
}

.experience-block h3,
.philosophy-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.experience-block ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.experience-block li {
    margin: 0.5rem 0;
}

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

.expectations-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: #1a1a1a;
    border-left: 3px solid #666;
}

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

.price-box {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
    text-align: center;
    font-size: 1.1rem;
}

.price-box strong {
    color: #fff;
}

.gallery-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #333;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}
/* Services page styles */
.services-intro {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #1a1a1a;
    border-left: 3px solid #fff;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #333;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-content {
    margin-top: 2rem;
}

.service-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.skill-category {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.skill-category h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.skill-category li:last-child {
    border-bottom: none;
}

.service-highlight {
    background: #0f0f0f;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid #fff;
}

.service-highlight h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.service-highlight p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-highlight strong {
    color: #fff;
}

.test-prep-content {
    background: #1a1a1a;
    padding: 2rem;
    margin: 1.5rem 0;
    border: 1px solid #333;
}

.test-prep-content ul {
    list-style: none;
    padding: 0;
}

.test-prep-content li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.test-prep-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}

.honest-assessment {
    margin-top: 2rem;
    padding: 2rem;
    background: #1a1a1a;
    border: 1px solid #666;
}

.honest-assessment h3 {
    margin-bottom: 1rem;
    color: #fff;
}

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

.option-box {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.option-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border: 1px solid #666;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
}

.why-training {
    background: #0f0f0f;
    padding: 3rem 2rem;
    border: 1px solid #333;
}

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

.why-item {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.services-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
}

.services-cta h2 {
    margin-bottom: 1rem;
    border: none;
    padding-bottom: 0;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .skills-grid,
    .vehicle-options,
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* Coming soon overlay for instructor car option */
.option-box.coming-soon {
    position: relative;
    opacity: 0.6;
}

.option-box.coming-soon::before {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid #000;
    z-index: 1;
}
/* What to Expect page styles */
.expect-intro {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #1a1a1a;
    border-left: 3px solid #fff;
}

.expect-section {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #333;
}

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

.expect-content {
    margin-top: 2rem;
}

.expect-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: #fff;
    font-weight: 400;
}

.expect-content > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-box {
    background: #0f0f0f;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #fff;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.highlight-box strong {
    color: #fff;
}

.what-youll-practice {
    margin-top: 3rem;
}

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

.practice-item {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.practice-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.practice-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.expect-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: #1a1a1a;
    border-left: 3px solid #666;
    line-height: 1.7;
}

.expect-list strong {
    color: #fff;
}

.highlight-section {
    background: #0f0f0f;
    padding: 3rem 2rem;
    border: 1px solid #333;
}

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

.difference-item {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.difference-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.difference-item p {
    line-height: 1.7;
}

.expect-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
}

.expect-cta h2 {
    margin-bottom: 1rem;
    border: none;
    padding-bottom: 0;
}

.expect-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .practice-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }
}
/* Pricing page styles */
.pricing-intro {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #1a1a1a;
    border-left: 3px solid #fff;
    text-align: center;
}

.pricing-main {
    margin-bottom: 5rem;
}

.pricing-main h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.bundle-offers {
    max-width: 900px;
    margin: 4rem auto 5rem;
    padding: 0 1rem;
}

.bundle-list {
    list-style: disc inside;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.pricing-card {
    background: #1a1a1a;
    padding: 3rem 2rem;
    border: 2px solid #333;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #666;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #fff;
    background: #0f0f0f;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 400;
}

.price-display {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.currency {
    font-size: 2rem;
    color: #fff;
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}

.period {
    display: block;
    font-size: 1rem;
    color: #888;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.contact-price {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 1px;
}

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

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #2a2a2a;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.whats-included {
    margin-bottom: 5rem;
    background: #0f0f0f;
    padding: 3rem 2rem;
    border: 1px solid #333;
}

.whats-included h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.included-item {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.included-item p {
    line-height: 1.7;
}

.payment-info {
    margin-bottom: 5rem;
}

.payment-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-block {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.info-block p {
    line-height: 1.7;
}

.why-premium {
    margin-bottom: 5rem;
}

.why-premium h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.reason-item {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333;
}

.reason-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 400;
}

.reason-item p {
    line-height: 1.7;
}

.special-circumstances {
    margin-bottom: 5rem;
    background: #1a1a1a;
    padding: 3rem 2rem;
    border: 1px solid #333;
}

.special-circumstances h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.circumstances-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.circumstances-box {
    background: #0f0f0f;
    padding: 2.5rem;
    border: 1px solid #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.circumstances-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pricing-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #0f0f0f;
    border: 1px solid #333;
}

.pricing-cta h2 {
    margin-bottom: 1rem;
    border: none;
    padding-bottom: 0;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .pricing-cards,
    .included-grid,
    .info-content,
    .premium-reasons {
        grid-template-columns: 1fr;
    }

    .amount {
        font-size: 3rem;
    }
}