* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
    font-size: 18px; /* Increased base font size */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background-color: #b71c1c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px; /* Increased logo font size */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px; /* Increased hamburger icon size */
    cursor: pointer;
    padding: 10px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Increased nav link font size */
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #d32f2f;
    border-radius: 5px;
}

.hero {
    background: #222;
    padding: 40px 0;
    text-align: center;
}

h1, h2, h3, h4 {
    color: #fff;
}

h1 {
    font-size: 42px; /* Increased h1 font size */
    margin-bottom: 20px;
}

h2 {
    font-size: 32px; /* Increased h2 font size */
    margin-bottom: 20px;
}

h3 {
    font-size: 26px; /* Increased h3 font size */
    margin-bottom: 10px;
}

h4 {
    font-size: 22px; /* Increased h4 font size */
    margin-bottom: 10px;
}

a, .hashtag-link, .local-area-item, .location-item {
    color: #2e7d32;
    text-decoration: none;
}

a:hover, .hashtag-link:hover, .local-area-item:hover, .location-item:hover {
    text-decoration: underline;
}

.content {
    padding: 40px 0;
}

.content p {
    font-size: 18px; /* Increased content paragraph font size */
    margin-bottom: 15px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.profile-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

.profile-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.profile-card p {
    font-size: 16px; /* Increased profile card text size */
    margin-bottom: 8px;
}

.rating {
    color: #ff69b4;
    font-size: 18px; /* Increased rating size */
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 12px 24px; /* Increased button padding */
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px; /* Increased button font size */
    transition: background-color 0.3s;
}

.btn.call {
    background-color: #c62828;
    color: #fff;
}

.btn.whatsapp {
    background-color: #2e7d32;
    color: #fff;
}

.btn.book {
    background-color: #2e7d32;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    opacity: 0.9;
}

.hero-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
}

.local-areas-grid, .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* Increased min width for larger buttons */
    gap: 15px; /* Increased gap for better spacing */
    padding: 20px 0;
}

.local-area-item, .location-item {
    padding: 15px; /* Increased padding for larger buttons */
    background: #c62828;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 16px; /* Increased button text size */
    font-weight: bold;
    transition: background-color 0.3s;
}

.local-area-item:hover, .location-item:hover {
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
}

.right-bar {
    display: none; /* Removed as all local areas are in the grid */
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.review-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.review-card p {
    font-size: 16px; /* Increased review text size */
    margin-bottom: 10px;
}

.client {
    font-style: italic;
    color: #ff69b4;
    font-size: 16px; /* Increased client name size */
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #333;
    padding: 12px; /* Increased table padding */
    text-align: center;
    font-size: 16px; /* Increased table text size */
}

.pricing-table th {
    background: #222;
    font-weight: bold;
}

.footer {
    background: #222;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 18px; /* Increased footer paragraph size */
    margin-bottom: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.faq-item p {
    font-size: 16px; /* Increased FAQ text size */
}

.footer-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
}

.footer-sticky a {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #fff;
    font-size: 20px; /* Increased sticky footer text size */
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.footer-sticky .call {
    background-color: #c62828;
}

.footer-sticky .whatsapp {
    background-color: #2e7d32;
}

.footer-sticky a:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: #b71c1c;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px;
        font-size: 20px; /* Increased nav link size for mobile */
    }

    h1 {
        font-size: 34px; /* Adjusted for mobile */
    }

    h2 {
        font-size: 28px; /* Adjusted for mobile */
    }

    .footer-sticky a {
        font-size: 18px; /* Adjusted sticky footer size for mobile */
        padding: 12px 0;
    }

    .local-areas-grid, .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); /* Adjusted for mobile */
    }

    .local-area-item, .location-item {
        font-size: 14px; /* Slightly reduced for mobile */
        padding: 12px; /* Adjusted padding for mobile */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 22px;
    }

    .profile-card p {
        font-size: 14px; /* Adjusted for smaller screens */
    }

    .btn {
        padding: 10px 18px; /* Adjusted button padding */
        font-size: 14px; /* Adjusted button font size */
    }

    .local-area-item, .location-item {
        font-size: 13px; /* Further adjusted for small screens */
        padding: 10px;
    }
}