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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

a {
    text-decoration: none;
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    margin-bottom: 15px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    display: block;
    text-decoration: none;
}

.logo a:hover {
    text-decoration: none;
}

.header-logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #0055aa;
}

/* Main Content */
main {
    padding: 40px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
}

/* Full-width Hero Section */
.hero-fullwidth {
    text-align: center;
    padding: 120px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.hero h1, .hero-fullwidth h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p, .hero-fullwidth p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Search Bar */
.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-container form, .search-form {
    display: flex;
    justify-content: center;
}

.search-container input[type="text"], .search-form input[type="text"] {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search-container button, .search-form button {
    background-color: #0066cc;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-container button:hover, .search-form button:hover {
    background-color: #0055aa;
}

/* Homepage search form - 50% less wide */
.hero .search-form, .hero-fullwidth .search-form {
    width: 50%;
    margin: 0 auto;
}

/* Top Picks Section */
.top-picks-section {
    margin-bottom: 40px;
}

.top-picks-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.top-picks-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.top-pick-card {
    width: 32%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.top-pick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.top-pick-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0066cc;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

.top-pick-image {
    height: 200px;
    overflow: hidden;
}

.top-pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-pick-card:hover .top-pick-image img {
    transform: scale(1.05);
}

.top-pick-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
    color: #333;
    text-align: center;
}

.top-pick-state {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}

.top-pick-stars {
    color: #FFD700;
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
}

.top-pick-reviews {
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
}

.top-pick-price {
    color: #0066cc;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.top-pick-card a {
    text-decoration: none;
    color: inherit;
}

.top-pick-card a:hover {
    text-decoration: none;
}

/* States Section */
.states-heading {
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
}

.states-subheading {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* States Grid */
.states-grid {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.states-grid h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000;
    grid-column: 1 / -1;
}

.states-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.state-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.state-card a {
    display: block;
    color: #333;
    text-decoration: none;
}

.state-image {
    height: 180px;
    overflow: hidden;
}

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

.state-card h3 {
    margin: 15px 0 5px;
    color: #000;
    text-align: center;
}

.state-card p {
    margin-bottom: 15px;
    text-align: center;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about h2 {
    color: #000;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 15px;
}

/* State Page */
.state-header {
    text-align: center;
    margin-bottom: 40px;
}

.state-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.state-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.state-intro p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    text-align: left;
}

.state-header h2 {
    font-size: 28px;
    color: #333;
    margin: 30px 0 15px;
}

.state-header p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Tours Grid */
.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.tour-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tour-card a {
    display: block;
    color: #333;
    text-decoration: none;
}

.tour-image {
    height: 180px;
    overflow: hidden;
}

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

.tour-info {
    padding: 15px;
}

.tour-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tour-price {
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.tour-reviews {
    color: #666;
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-link, .current-page {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px 5px;
    border-radius: 4px;
}

.page-link {
    background-color: #fff;
    color: #0066cc;
    border: 1px solid #ddd;
}

.page-link:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.current-page {
    background-color: #0066cc;
    color: #fff;
    border: 1px solid #0066cc;
}

/* Tour Detail Page */
.tour-detail {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.tour-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.tour-header h1 {
    color: #000;
    font-size: 28px;
    margin-bottom: 10px;
}

.tour-location {
    color: #666;
    font-size: 18px;
}

.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.tour-image-large {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.tour-image-large img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.tour-description, .tour-inclusions {
    margin-bottom: 30px;
}

.tour-description h2, .tour-inclusions h2 {
    color: #000;
    font-size: 22px;
    margin-bottom: 15px;
}

.tour-sidebar {
    position: sticky;
    top: 100px;
}

.tour-booking {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.tour-booking h3 {
    color: #000;
    margin-bottom: 15px;
}

.tour-price-large {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.tour-reviews-large {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.tour-stars-large {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.book-button {
    display: block;
    background-color: #0066cc;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.book-button:hover {
    background-color: #0055aa;
    text-decoration: none;
}

.back-to-state {
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 40px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #ccc;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column {
    width: 30%;
    margin-bottom: 20px;
    text-align: center;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    text-align: center;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-column li {
    margin-bottom: 10px;
    text-align: center;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease;
    text-align: center;
}

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

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

.footer-bottom p {
    margin-bottom: 10px;
}

/* Search Results Page */
.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-header h1 {
    color: #000;
    font-size: 32px;
    margin-bottom: 10px;
}

.search-header p {
    margin-bottom: 20px;
    color: #666;
}

.search-header .search-container {
    margin-top: 20px;
}

.tour-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.no-results {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.no-results p {
    margin-bottom: 20px;
    color: #666;
}

.back-button {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #0055aa;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tour-content {
        flex-direction: column;
    }
    .states-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .tours-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 18px;
    }
    .search-container form {
        flex-direction: column;
    }
    .search-container input[type="text"] {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    .search-container button {
        border-radius: 4px;
    }
    .search-container {
        max-width: 100%;
    }
    
    /* Responsive states columns */
    .states-grid-columns {
        flex-direction: column;
    }
    
    .states-column {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .states-column:last-child {
        margin-bottom: 0;
    }
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .states-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .tours-container {
        grid-template-columns: 1fr;
    }
    
    .tour-card {
        max-width: 100%;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Black check mark for free cancellation */
.feature:nth-child(4) .feature-icon {
    color: #000;
    font-weight: bold;
}

.feature h3 {
    color: #000;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
}

.featured-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

/* Reviews Carousel Section */
.reviews-section {
    margin-bottom: 60px;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

.reviews-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.review-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.review-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #0066cc;
}

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

.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-text {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.review-author {
    font-weight: 600;
    color: #0066cc;
    margin-top: auto;
}

/* Responsive styles for reviews */
@media (max-width: 992px) {
    .review-item {
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .review-item {
        width: 100%;
    }
}

/* Add this for the tours grid on state page */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Recommended Tours Section */
.recommended-tours {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.recommended-tours h2 {
    color: #000;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.similar-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.similar-tour-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.similar-tour-image {
    height: 200px;
    overflow: hidden;
}

.similar-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-tour-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.similar-tour-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.similar-tour-info h3 a {
    color: #000;
    text-decoration: none;
}

.similar-tour-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.stars {
    color: #ffc107;
    margin-right: 5px;
    font-size: 18px;
}

.rating-number {
    font-weight: bold;
    margin-right: 5px;
}

.reviews-count {
    color: #666;
    font-size: 14px;
}

.price-indicator {
    color: #000;
    font-weight: bold;
    margin-left: auto;
}

.similar-tour-type, .similar-tour-location {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.similar-tour-stars {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 16px;
}

.visit-website-button {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    text-align: center;
    transition: background-color 0.3s ease;
}

.visit-website-button:hover {
    background-color: #0055aa;
    text-decoration: none;
}

.recommended-intro {
    margin-bottom: 25px;
    color: #666;
    max-width: 800px;
}

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

.spacer-5px {
    height: 5px;
    width: 100%;
    clear: both;
}

.spacer-10px {
    height: 10px;
    width: 100%;
    clear: both;
}

.tour-content-new {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.tour-image-centered {
    text-align: center;
    margin-bottom: 20px;
}

.tour-image-centered img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tour-booking-centered {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.similar-tour-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.similar-tour-info h3 a {
    color: #000;
    text-decoration: none;
}

/* Browse states section */
.browse-states {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.browse-states h2 {
    margin-bottom: 25px;
    color: #333;
}

.states-grid-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.states-column {
    width: 18%;
    display: flex;
    flex-direction: column;
}

.state-link {
    display: block;
    padding: 8px 0;
    color: #0066cc;
    transition: color 0.3s ease;
}

.state-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Tablet view for states columns */
@media (max-width: 992px) and (min-width: 769px) {
    .states-column {
        width: 30%;
        margin-bottom: 15px;
    }
    
    .states-grid-columns {
        justify-content: flex-start;
        gap: 5%;
    }
}

/* Sitemap Styles */
.sitemap-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 36px;
    color: #333;
}

.sitemap-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

.sitemap-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 50px;
}

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

.sitemap-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sitemap-section h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
    padding: 5px 0;
}

.sitemap-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    display: inline-block;
}

.sitemap-list a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.sitemap-parent {
    margin-bottom: 20px;
}

.sitemap-parent > span {
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.sitemap-sublist {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
    border-left: 2px solid #eee;
}

.sitemap-sublist li {
    margin-bottom: 5px;
}

.sitemap-sublist a {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .sitemap-container {
        padding: 20px;
    }
    
    .sitemap-section h2 {
        font-size: 20px;
    }
    
    .sitemap-parent > span {
        font-size: 16px;
    }
    
    .sitemap-sublist {
        padding-left: 15px;
    }
} 