/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header en Navigatie */
header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2c3e50 100%);
    color: #fff;
    padding: 0.25rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #FFD700;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    margin-right: 25px;
}

.logo h1 {
    color: #FFD700; /* Goud */
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li {
    margin-left: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

/* Hero Secties */
.hero, .rental-hero, .about-hero, .contact-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px; /* Voor fixed header */
    position: relative;
}

.hero::before, .rental-hero::before, .about-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(44,62,80,0.8) 100%);
    z-index: 1;
}

.hero-content, .rental-hero .container, .about-hero .container, .contact-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h2, .rental-hero h2, .about-hero h2, .contact-hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #FFD700; /* Goud */
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.hero-content p, .rental-hero p, .about-hero p, .contact-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Knoppen */
.btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Features Sectie */
.features {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.feature h3 {
    color: #FFD700; /* Goud */
    margin-bottom: 1rem;
}

/* Auto's Sectie */
.cars {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.cars .container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.car {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.car:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.car img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car:hover img {
    transform: scale(1.05);
}

.car-content {
    padding: 2rem;
}

.car h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.car .price {
    color: #FFD700;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.car .features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.car .features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.car .features li::before {
    content: "✓";
    color: #FFD700;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Agenda/Kalender */
.calendar {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 2rem;
    margin: 2rem 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-header button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.05);
}

.calendar-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day-name {
    text-align: center;
    font-weight: 600;
    color: #FFD700;
    padding: 10px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background: #f8f8f8;
    border: 2px solid transparent;
}

.calendar-day:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.calendar-day.today {
    border-color: #FFD700;
    font-weight: 700;
}

.calendar-day.other-month {
    color: #ccc;
    cursor: default;
}

.calendar-day.other-month:hover {
    background: #f8f8f8;
    transform: none;
}

/* Boeking Sectie */
.booking {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.booking h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

#booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* TOS en Privacy Secties */
.tos-content, .privacy-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.tos-text, .privacy-text {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.tos-text h3, .privacy-text h3 {
    color: #FFD700;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.tos-text h3:first-child, .privacy-text h3:first-child {
    margin-top: 0;
}

.tos-text h3::after, .privacy-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 1px;
}

.tos-text ul, .privacy-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.tos-text li, .privacy-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.tos-text p, .privacy-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #FFD700;
}

.last-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Over Ons Sectie */
.about-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    justify-content: center;
    align-items: start;
}

.about-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

.about-text h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #FFD700;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #FFD700;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Contact Sectie */
.contact-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

.contact-form h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.contact-form p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#contact-form {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
    accent-color: #FFD700;
}

.contact-info h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item small {
    color: #888;
    font-size: 0.9rem;
}

.contact-info h3:last-of-type {
    margin-top: 3rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.contact-map {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-map h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.map-placeholder {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    transform: scale(1.02);
}

.map-placeholder p {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.map-placeholder small {
    color: #FFD700;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000 0%, #2c3e50 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsiviteit */
@media (max-width: 768px) {
    nav {
        position: relative;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        padding: 1rem 0;
        display: none;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }

    nav ul li a {
        padding: 0.5rem 1rem;
        display: block;
    }

    .hero-content h2, .rental-hero h2, .about-hero h2, .contact-hero h2 {
        font-size: 2rem;
    }

    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-grid, .car-grid {
        grid-template-columns: 1fr;
    }

    .car-content {
        padding: 1.5rem;
    }

    .car h3 {
        font-size: 1.2rem;
    }

    .car .price {
        font-size: 1.3rem;
    }

    .calendar {
        padding: 1rem;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        font-size: 0.9rem;
        padding: 8px;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .info-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        line-height: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .contact-map {
        padding: 1.5rem;
    }

    .map-placeholder {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem 0;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .hero-content h2, .rental-hero h2, .about-hero h2, .contact-hero h2 {
        font-size: 1.8rem;
    }

    .hero-content p, .rental-hero p, .about-hero p, .contact-hero p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .features h2, .cars .container h2, .booking h2 {
        font-size: 2rem;
    }

    .feature, .car {
        padding: 1.5rem;
    }

    .car img {
        height: 200px;
    }

    #booking-form {
        padding: 2rem 1.5rem;
    }

    .form-group input, .form-group select, .form-group textarea {
        padding: 12px;
        font-size: 1rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .contact-form h3, .contact-info h3 {
        font-size: 1.8rem;
    }

    #contact-form {
        padding: 2rem 1.5rem;
    }

    .info-item strong {
        font-size: 1rem;
    }

    .info-item small {
        font-size: 0.85rem;
    }

    .contact-map h4 {
        font-size: 1.1rem;
    }

    .map-placeholder p {
        font-size: 1rem;
    }

    .map-placeholder small {
        font-size: 0.9rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
