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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo .logo {
    height: 32px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00a651;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #00a651;
    color: white;
    border-color: #00a651;
}

.btn-primary:hover {
    background-color: #008a44;
    border-color: #008a44;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #00a651;
    border-color: #00a651;
}

.btn-secondary:hover {
    background-color: #00a651;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    border-color: #00a651;
    color: #00a651;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.about-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
}

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

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* Tours Section */
.tours-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.tours-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.tours-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.tours-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tours-list {
    list-style: none;
    margin-bottom: 30px;
}

.tours-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.tours-list li:last-child {
    border-bottom: none;
}

.tours-widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Promo Section */
.promo-section {
    padding: 80px 0;
}

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

.promo-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.promo-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.promo-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
}

.promo-steps li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.app-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.app-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features {
    list-style: none;
    margin-bottom: 30px;
}

.app-features li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
}

.app-screenshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* CTA Section */
.cta-section {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-logo .logo {
        height: 28px;
        max-width: 120px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .tours-content,
    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #00a651;
    outline-offset: 2px;
}

/* Promo Codes Page Styles */
.promo-codes-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.promo-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.promo-code-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.promo-code-card:hover {
    transform: translateY(-5px);
}

.promo-code-header {
    background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.promo-code-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.discount {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.promo-code-content {
    padding: 25px;
}

.promo-code-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.promo-details {
    list-style: none;
    margin-bottom: 25px;
}

.promo-details li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.promo-details li:last-child {
    border-bottom: none;
}

.promo-details li:before {
    content: "✓";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

/* How to Use Section */
.how-to-use-section {
    padding: 80px 0;
}

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

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: #00a651;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Discount Types Section */
.discount-types-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.discount-type-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.discount-type-card:hover {
    transform: translateY(-5px);
}

.discount-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.discount-type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.discount-type-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.discount-features {
    list-style: none;
    text-align: left;
}

.discount-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

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

.discount-features li:before {
    content: "•";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

/* Best Time Section */
.best-time-section {
    padding: 80px 0;
}

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

.timing-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.timing-card:hover {
    transform: translateY(-5px);
}

.timing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.timing-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.timing-tip {
    background: #f0f8f4;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #00a651;
}

.timing-tip strong {
    color: #00a651;
}

/* Money Saving Tips Section */
.money-saving-tips-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active Navigation Link */
.nav-link.active {
    color: #00a651;
    font-weight: 600;
}

/* Tours & Activities Page Styles */
.categories-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.category-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

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

.category-features li:before {
    content: "✓";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

/* Popular Experiences Section */
.popular-experiences-section {
    padding: 80px 0;
}

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

.experiences-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.experiences-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #333;
}

.experiences-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.experiences-widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Destination Highlights Section */
.destination-highlights-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.destinations-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.destination-highlight {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.destination-highlight:hover {
    transform: translateY(-5px);
}

.destination-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 30px;
}

.destination-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.destination-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destination-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stat {
    background: #f0f8f4;
    color: #00a651;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Booking Process Section */
.booking-process-section {
    padding: 80px 0;
}

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

.booking-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.booking-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.booking-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.booking-step p {
    color: #666;
    line-height: 1.6;
}

/* Special Offers Section */
.special-offers-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.offer-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.offer-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-discount {
    background: #00a651;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: inline-block;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.review-author strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.review-author span {
    color: #00a651;
    font-size: 0.9rem;
}

/* Login Guide Page Styles */
.quick-access-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.access-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
}

.access-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.access-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.access-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Sign In Section */
.sign-in-section {
    padding: 80px 0;
}

.sign-in-steps {
    max-width: 800px;
    margin: 0 auto;
}

/* Create Account Section */
.create-account-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.account-benefits h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.account-benefits p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li strong {
    color: #00a651;
}

.account-creation-steps h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.creation-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.creation-step {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.creation-step:hover {
    transform: translateY(-5px);
}

.creation-step .step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.creation-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.creation-step p {
    color: #666;
    line-height: 1.6;
}

/* Password Reset Section */
.password-reset-section {
    padding: 80px 0;
}

.password-reset-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.reset-methods h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.reset-steps {
    list-style: decimal;
    padding-left: 20px;
}

.reset-steps li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
}

.password-tips h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tip-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.tip-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Account Management Section */
.account-management-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 80px 0;
}

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

.mobile-features h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mobile-features p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.app-feature {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.app-feature:hover {
    transform: translateY(-5px);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.app-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.app-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.download-section {
    background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.download-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.download-section p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Troubleshooting Section */
.troubleshooting-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.troubleshooting-content {
    max-width: 1000px;
    margin: 0 auto;
}

.issue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.issue-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
}

.issue-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

.issue-card strong {
    color: #00a651;
}

/* Mobile App Page Styles */
.app-features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

/* App Screenshots Section */
.app-screenshots-section {
    padding: 80px 0;
}

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

.screenshots-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.screenshots-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #333;
}

.screenshots-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.app-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.app-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.app-section:hover {
    transform: translateY(-5px);
}

.app-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.app-section p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.screenshot-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.screenshot-item p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
    color: white;
}

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

.download-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.download-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.download-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    background: white;
    color: #333;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-5px);
}

.btn-icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

.btn-text {
    text-align: left;
}

.btn-title {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.btn-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
}

/* App Benefits Section */
.app-benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

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

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* How to Use Section */
.how-to-use-section {
    padding: 80px 0;
}

.usage-steps {
    max-width: 800px;
    margin: 0 auto;
}

/* System Requirements Section */
.system-requirements-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.requirement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.requirement-list {
    list-style: none;
    text-align: left;
}

.requirement-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list li:before {
    content: "✓";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

/* City Pages Styles */
.attractions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-content {
    padding: 25px;
}

.attraction-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature {
    background: #f0f8f4;
    color: #00a651;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Tour Categories Section */
.tour-categories-section {
    padding: 80px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background: white;
    border: 2px solid #ddd;
    color: #666;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #00a651;
    border-color: #00a651;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.tour-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.tour-item:hover {
    transform: translateY(-5px);
}

.tour-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tour-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* NYC Tips Section */
.nyc-tips-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* Neighborhoods Section */
.neighborhoods-section {
    padding: 80px 0;
}

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

.neighborhood-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
}

.neighborhood-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.neighborhood-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.neighborhood-highlights {
    list-style: none;
}

.neighborhood-highlights li {
    padding: 5px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.neighborhood-highlights li:last-child {
    border-bottom: none;
}

.neighborhood-highlights li:before {
    content: "•";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

/* Trust Pages Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: #00a651;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.response-time {
    color: #999;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a651;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

/* Business Hours Section */
.business-hours-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.hours-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.hours-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #666;
}

/* About Us Page Styles */
.mission-section {
    padding: 80px 0;
}

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

.mission-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.mission-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* Story Section */
.story-section {
    padding: 80px 0;
}

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

.story-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.story-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.story-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-list {
    list-style: none;
    margin: 20px 0;
}

.story-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.story-list li:last-child {
    border-bottom: none;
}

.story-list li:before {
    content: "✓";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    margin-bottom: 20px;
}

.member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.member-role {
    color: #00a651;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
}

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

.partnership-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.partnership-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.partnership-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partnership-benefits {
    list-style: none;
    margin: 20px 0;
}

.partnership-benefits li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.partnership-benefits li:last-child {
    border-bottom: none;
}

.partnership-benefits li:before {
    content: "✓";
    color: #00a651;
    font-weight: bold;
    margin-right: 10px;
}

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

.partnership-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Terms and Conditions Styles */
.terms-content-section {
    padding: 80px 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.last-updated {
    background: #f0f8f4;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #00a651;
}

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

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #00a651;
    padding-bottom: 10px;
}

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

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

.terms-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #333;
}

.contact-info strong {
    color: #00a651;
}

/* 404 Error Page Styles */
.error-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
    color: white;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.8;
}

.error-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.helpful-links {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.helpful-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.helpful-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

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

.helpful-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.helpful-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Image Placeholders */
.destination-image,
.attraction-image,
.mission-img,
.partnership-img,
.member-img,
.screenshot-image,
.app-screenshot {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
}

/* Remove placeholder text from all image placeholders */
.destination-image:before,
.attraction-image:before,
.mission-img:before,
.partnership-img:before,
.member-img:before,
.screenshot-image:before,
.app-screenshot:before {
    content: "";
    display: none;
}

/* Logo placeholder */
.logo {
    background: #00a651;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    width: 120px;
    height: 32px;
    text-decoration: none;
}

.logo:before {
    content: "Get My Guide";
}

/* Destination Image Placeholders */
.destination-image {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    min-height: 200px;
}

.new-york-placeholder {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

.las-vegas-placeholder {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.miami-placeholder {
    background: linear-gradient(135deg, #26d0ce 0%, #1a9cb0 100%);
    color: white;
}

.san-francisco-placeholder {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

/* Las Vegas placeholders */
.vegas-strip-placeholder {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.grand-canyon-placeholder {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
}

.hoover-dam-placeholder {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.red-rock-placeholder {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
}

/* Miami placeholders */
.south-beach-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.everglades-placeholder {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.wynwood-placeholder {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: white;
}

.little-havana-placeholder {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

/* San Francisco placeholders */
.golden-gate-placeholder {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.alcatraz-placeholder {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
}

.cable-car-placeholder {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.fisherman-wharf-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

/* Mobile app placeholder */
.mobile-app-placeholder {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

/* About us page placeholders */
.travel-experience-placeholder {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
}

.team-member-placeholder {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.partnership-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

/* Mobile app screenshots */
.app-home-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.app-search-placeholder {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.app-tickets-placeholder {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

/* Fix for broken images - remove placeholder text */
img[src$=".jpg"], img[src$=".png"], img[src$=".jpeg"] {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    min-height: 200px;
}

/* Remove the "Image Placeholder" text completely */
img[src$=".jpg"]:before,
img[src$=".png"]:before,
img[src$=".jpeg"]:before {
    content: "";
    display: none;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-actions,
    .cta-section {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        padding: 20px 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
