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

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "lato-regular";
    src: url("fonts/lato-regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "lato-regular";
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

section
{
    margin-bottom: 40px;
}
.KPKSdvlckvpsokd{display: flex; justify-content: space-between; align-content: center;}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.primary-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    border:1px solid #FFF;
    transition: background-color 0.3s;
}

.primary-button:hover {
    background-color: #2980b9;
}

.secondary-button {
    display: inline-block;
    border: 2px solid #3498db;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: #3498db;
    color: white;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav a.active {
    color: #3498db;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding-top: 80px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-image {
    flex: 1;
}

.features-section {
    padding: 5rem 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.bike-types-section {
    padding: 5rem 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    padding: 0 1rem;
    text-align: center;
}

.slider-item img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.slider-button {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #3498db;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.slider-button:hover {
    background-color: #2980b9;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.customer-info h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.customer-info span {
    display: block;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.rating {
    color: #f1c40f;
    font-size: 1.2rem;
}

.faq-section {
    padding: 5rem 0;
}

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

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background-color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.accordion-button .icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-button.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
}

.cta-section {
    padding: 5rem 0;
    background-color: #3498db;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    margin-bottom: 1.5rem;
    color: #bdc3c7;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #3498db;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    width: 100%;
    padding: 0.8rem;
    background-color: #3498db;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2980b9;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.about-hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.history-section {
    padding: 5rem 0;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.history-text {
    flex: 1;
}

.history-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.history-text p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.history-image {
    flex: 1;
}

.mission-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission-card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-section {
    padding: 5rem 0;
}

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

.team-member {
    text-align: left;
    border: 2px solid #f3f3f3;
    border-radius: 14px;
    padding: 10px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    padding: 0;
}

.team-member .position {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0;
}

.team-member .bio {
    color: #7f8c8d;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background-color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    background-color: #3498db;
    color: white;
}

.tab-content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.tab-content h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.tab-content img {
    margin-top: 1.5rem;
    border-radius: 8px;
}

.partners-section {
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

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

.partner-item img {
    height: 80px;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.rental-hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/rental-hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.rental-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background-color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #3498db;
    color: #3498db;
}

.tab-button.active {
    background-color: #3498db;
    color: white;
}

.category-details {
    display: none;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.category-details.active {
    display: flex;
}

.category-info {
    flex: 1;
}

.category-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.category-info p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.features-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #7f8c8d;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.price-option {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.price-option h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-option .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.price-option .price .time {
    font-size: 1rem;
    font-weight: 400;
}

.price-option .description {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.rent-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.rent-button:hover {
    background-color: #2980b9;
}

.category-image {
    flex: 1;
}

.additional-services-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.service-card .price {
    font-weight: 600;
    color: #3498db;
}

.rental-form-section {
    padding: 5rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2980b9;
}

.locations-section {
    padding: 5rem 0;
}

.locations-map {
    position: relative;
    margin-top: 2rem;
}

.locations-map img {
    width: 100%;
    border-radius: 8px;
}

.location-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pin {
    position: absolute;
    transform: translate(-50%, -50%);
}

.pin-icon {
    width: 30px;
    height: 30px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
}

.pin-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    display: none;
}

.pin:hover .pin-info {
    display: block;
}

.pin-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.pin-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.contact-hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/contact-hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-methods-section {
    padding: 5rem 0;
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-method img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-method p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.phone-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1rem;
}

.email-address {
    display: block;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1rem;
    word-break: break-all;
}

.chat-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.chat-button:hover {
    background-color: #2980b9;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-contact-section {
    padding: 5rem 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #7f8c8d;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.faq-ctp a {
    color: #3498db;
    font-weight: 600;
}

.locations-section {
    padding: 5rem 0;
}

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

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-card h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-info img {
    width: 20px;
    margin-top: 3px;
}

.location-hours {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-hours img {
    width: 20px;
    margin-top: 3px;
}

.directions-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.directions-button:hover {
    background-color: #2980b9;
}

.emergency-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.emergency-content img {
    width: 100px;
}

.emergency-info h3 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.emergency-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.privacy-hero-content h1,
.terms-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.privacy-content-section,
.terms-content-section {
    padding: 5rem 0;
}

.privacy-container,
.terms-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-article,
.terms-article {
    margin-bottom: 3rem;
}

.privacy-article h2,
.terms-article h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.privacy-article h3,
.terms-article h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.privacy-article p,
.terms-article p {
    margin-bottom: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.privacy-article ul,
.terms-article ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-article ul li,
.terms-article ul li {
    margin-bottom: 0.8rem;
    color: #7f8c8d;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-article ul li::before,
.terms-article ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
}

.privacy-article address,
.terms-article address {
    font-style: normal;
    margin-top: 1.5rem;
    color: #7f8c8d;
    line-height: 1.8;
}
.dfokbsdp
{
    width: 50%;
}
.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

.thank-you-content img {
    width: 100px;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.return-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 2rem;
}

.return-button:hover {
    background-color: #2980b9;
}

.next-steps-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-card img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-buttons a {
    display: inline-block;
}

.app-buttons img {
    height: 40px;
    margin: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-buttons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-buttons a:hover {
    transform: translateY(-5px);
}

.explore-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.explore-button:hover {
    background-color: #2980b9;
}

.contact-reminder-section {
    padding: 5rem 0;
    text-align: center;
}

.reminder-content h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.reminder-content p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.support-hours {
    color: #7f8c8d;
}

#ageVerificationPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.popup-content p {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.popup-buttons button {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

#confirmAge {
    background-color: #3498db;
    color: white;
}

#denyAge {
    background-color: #e74c3c;
    color: white;
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: none;
    color: #7f8c8d;
    width: auto;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .history-content {
        flex-direction: column;
    }
    
    .category-details {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    .values-tabs
    {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .buttons-container {
        justify-content: center;
    }
    
    .mission-content,
    .values-content {
        flex-direction: column;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-content img {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .buttons-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .pricing, .testimonials-container {
        grid-template-columns: 1fr;
    }
}

/* Age Verification Popup */
.JxKlMnOpQrStUvWx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.YzAbCdEfGhIjKlMn {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.YzAbCdEfGhIjKlMn h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

.YzAbCdEfGhIjKlMn p {
    margin-bottom: 2rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.ZqWeRtYuIoPpAaSs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ZqWeRtYuIoPpAaSs button
{
    height: 33px;
}


.VbNmQwErTyUiOpAs {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.XcVbNmQwErTyUiOp {
    background-color: #3498db;
    color: white;
}

.XcVbNmQwErTyUiOp:hover {
    background-color: #2980b9;
}

.DfGhJkLzXcVbNmQw {
    background-color: #e74c3c;
    color: white;
}

.DfGhJkLzXcVbNmQw:hover {
    background-color: #c0392b;
}

.EfGhIjKlMnOpQrSt {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: none;
    color: #7f8c8d;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.EfGhIjKlMnOpQrSt:hover {
    color: #34495e;
}

/* Burger Menu Styles */
.VbNmQwErTyUiOpAs {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.XcVbNmQwErTyUiOp,
.DfGhJkLzXcVbNmQw,
.EfGhIjKlMnOpQrSt {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Active state */
.VbNmQwErTyUiOpAs.active .XcVbNmQwErTyUiOp {
    transform: translateY(10px) rotate(45deg);
}

.VbNmQwErTyUiOpAs.active .DfGhJkLzXcVbNmQw {
    opacity: 0;
}

.VbNmQwErTyUiOpAs.active .EfGhIjKlMnOpQrSt {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile menu styles */
nav ul.XcVbNmQwErTyUiO {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .VbNmQwErTyUiOpAs {
        display: flex;
    }
    
    nav ul.XcVbNmQwErTyUiO {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    nav ul.XcVbNmQwErTyUiO.active {
        transform: translateY(0);
    }
}