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

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #003d7a;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #003d7a;
    color: #fff;
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: #0056b3;
}

.hotline {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.hotline i {
    color: #0056b3;
    margin-right: 8px;
    font-size: 18px;
}

.hotline a {
    font-weight: 700;
    color: #0056b3;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0056b3;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 122, 0.9)), url('https://source.unsplash.com/random/1600x900/?moving,transport') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero .btn {
    margin-top: 20px;
    background-color: #fff;
    color: #0056b3;
}

.hero .btn:hover {
    background-color: #f0f0f0;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: #fff;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.advantage-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s;
}

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

.advantage-card .icon {
    font-size: 36px;
    color: #0056b3;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 18px;
}

/* Contact Options Section */
.contact-options {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-options h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.option-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.option-card .number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.option-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    padding: 30px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 8px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-item i {
    margin-right: 15px;
    font-size: 20px;
}

.info-item a {
    color: #fff;
    text-decoration: underline;
}

.contact-form {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-form h2 {
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-success {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

/* Terms Section */
.terms {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.terms h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.term {
    margin-bottom: 30px;
}

.term h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.more-terms {
    display: none;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: #003d7a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-info h3,
.footer-contact h3,
.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer-contact a {
    color: #fff;
}

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

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

.footer-links ul li a {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .hotline {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    nav {
        width: 100%;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .service-grid,
    .advantage-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .services,
    .advantages,
    .contact-options,
    .contact,
    .terms {
        padding: 40px 0;
    }
    
    .service-card,
    .advantage-card,
    .option-card {
        padding: 20px;
    }
}

/* Page Header for AGB page */
.page-header {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 122, 0.9)), url('https://source.unsplash.com/random/1600x400/?document,contract') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 0;
}

/* Full Terms Section */
.terms-full {
    padding: 60px 0;
    background-color: #fff;
}

.terms-full .term {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.terms-full .term:last-child {
    border-bottom: none;
}

.terms-full .term h3 {
    color: #0056b3;
    font-size: 20px;
    margin-bottom: 15px;
}

/* AGB Teaser Section */
.agb-teaser {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.agb-teaser h2 {
    margin-bottom: 20px;
}

.agb-teaser p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Active Navigation Link */
nav ul li a.active {
    color: #0056b3;
    font-weight: 700;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    margin-right: 10px;
}

/* Hero section with image */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    margin-top: 20px;
}

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

/* Contact section truck image */
.truck-illustration {
    margin-top: 30px;
    text-align: center;
}

.contact-truck-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .logo-image {
        height: 30px;
    }
}

/* Update the existing header styles to accommodate the logo */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

/* Update the existing hero section background */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 122, 0.9));
    color: #fff;
    padding: 80px 0;
}

/* Update these slider styles in your CSS file */

/* Slider Container - adjust size */
.slider-container {
    position: relative;
    max-width: 800px; /* Reduced from 900px */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px; /* Reduced from 500px */
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
    background-color: #f0f0f0; /* Light background for images */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider {
        height: 300px; /* Reduced from 350px */
    }
    
    .slider-dots {
        bottom: 20px; /* Adjusted position */
    }
}

@media (max-width: 576px) {
    .slider {
        height: 200px; /* Reduced from 250px */
    }
    
    .slider-dots {
        bottom: 15px; /* Adjusted position */
    }
}

/* Gallery Section Styles */
.gallery {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 15px;
    color: #fff;
    font-weight: 600;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
}

.gallery-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Lightbox styles for when images are clicked */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* Add these styles for the privacy policy page */

.privacy-content {
    padding: 60px 0;
    background-color: #fff;
}

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

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: #0056b3;
    font-size: 24px;
    margin-bottom: 20px;
}

.privacy-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #333;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-section a {
    color: #0056b3;
    text-decoration: underline;
}

.privacy-section a:hover {
    color: #003d7a;
}

.privacy-date {
    font-style: italic;
    color: #6c757d;
    margin-top: 30px;
}

/* Add a style for the privacy link in the form */
.privacy-link {
    color: #0056b3;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #003d7a;
}

/* Add this to your existing CSS file */
.form-error {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

/* Add this to your existing CSS file */
.form-error {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

/* Keep the existing truck-image styles for other sections */
.truck-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Update hero section layout for better image presentation */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 350px;
}

/* Responsive adjustments for the new hero image */
@media (max-width: 992px) {
    .hero-content {
        gap: 30px;
    }
    
    .hero-image {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 20px;
        min-width: 280px;
    }
    
    .hero-main-image {
        border-radius: 8px;
    }
}

/* Update the hero section styles to use the new image as background */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 122, 0.9)), 
                url('images/hero-movers.png') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    margin-top: 20px;
    background-color: #fff;
    color: #0056b3;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.hero .btn:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
}

/* Add this to your existing CSS file */
.form-error {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

/* Updated hero section styles */
.hero {
    background: url('images/hero-movers.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

/* Add a subtle dark overlay instead of blue */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay instead of blue */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text-container {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

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

.hero h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    margin: 0 auto 20px;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    margin-top: 20px;
    background-color: #fff;
    color: #333;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

/* Keep the existing truck-image styles for other sections */
.truck-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for the new hero image */
@media (max-width: 992px) {
    .hero-content {
        gap: 30px;
    }
    
    .hero-image {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-text-container {
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 20px;
        min-width: 280px;
    }
    
    .hero-main-image {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-text-container {
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
}