:root {
    --primary-color: #f7941d;
    --secondary-color: #333333;
    --accent-color: #f7941d;
    --text-color: #333333;
    --text-light: #ffffff;
    --background-color: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #dddddd;
}

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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

header {
    background-color: var(--background-color);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    max-width: 200px;
    padding: 0.5rem 0;
    z-index: 1001;
}

.logo img {
    width: 125%;
    height: auto;
    display: block;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.phone {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.phone i {
    font-size: 1.2rem;
}

.hero {
    height: auto;
    min-height: 35vh;
    background-color: var(--gray-light);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right bottom, transparent 49%, white 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: normal;
}

.cta-button, .submit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover,
.submit-btn:hover {
    background-color: var(--secondary-color);
}

.page-header {
    background-color: var(--gray-light);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right bottom, transparent 49%, white 50%);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid var(--gray);
}

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

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.company-info {
    background-color: var(--gray-light);
    padding: 2rem 0;
}

.company-text {
    max-width: 800px;
    margin: 0 auto;
}

.company-text h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.company-text h3 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.company-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.company-text ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.company-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.company-highlight i {
    font-size: 2rem;
    color: var(--primary-color);
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-color);
}

.highlight-text {
    color: var(--text-color);
    opacity: 0.8;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

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

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

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

.project-item {
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.project-image {
    height: 250px;
    overflow: hidden;
}

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

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.contact-info-box {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-box h2,
.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    flex-shrink: 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: min(1400px, 90%);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: center;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--background-color);
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 2rem;
    }

    .nav-container.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.3rem 0;
    }

    .contact-info {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6.5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-content {
        padding: 1.5rem 0.5rem 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .contact-info {
        padding: 0.5rem 1rem;
    }

    .phone {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

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

    .footer-contact {
        margin-bottom: 0.5rem;
    }

    .company-text h2 {
        font-size: 1.8rem;
    }

    .company-text h3 {
        font-size: 1.3rem;
    }

    .highlight-title {
        font-size: 1.2rem;
    }

    .mobile-phone-button {
        display: flex;
    }

    .intro-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .intro-text {
        padding: 2rem 1rem;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .logo img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 6rem 1rem 1.5rem;
    }

    .page-header {
        padding: 6rem 1rem 3rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .contact-info {
        margin-top: 1rem;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content {
        padding: 1rem;
    }

    .mobile-phone-button {
        display: flex;
    }

    .mobile-nav-buttons {
        display: flex;
        z-index: 1001;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    color: var(--text-color);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Service Links */
.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--gray-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right bottom, white 49%, transparent 50%);
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Formular Nachrichten */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Privacy Content */
.privacy-content {
    padding: 2rem 0;
}

.privacy-content h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.privacy-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.privacy-content h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-content h2 {
        font-size: 1.6rem;
    }

    .privacy-content h3 {
        font-size: 1.3rem;
    }

    .privacy-content h4 {
        font-size: 1.1rem;
    }
}

/* Legal Content (Impressum & Datenschutz) */
.legal-content {
    padding: 2rem 0;
}

.legal-content h2 {
    color: var(--text-color);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.company-details {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 1.4rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .company-details {
        padding: 1.5rem;
    }
}

.privacy-notice {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.privacy-notice p {
    margin: 0;
}

.privacy-notice a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-notice a:hover {
    color: var(--secondary-color);
}

.image-highlights {
    padding: 1rem 0;
    background-color: var(--background-color);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight-item {
    background-color: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.highlight-image {
    height: 250px;
    overflow: hidden;
}

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

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

.highlight-content {
    padding: 1.5rem;
}

.highlight-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .highlight-image {
        height: 200px;
    }

    .highlight-content h3 {
        font-size: 1.2rem;
    }
}

.mobile-nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-phone-button {
    display: none;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.mobile-phone-button i {
    color: white;
    font-size: 20px;
}

.mobile-phone-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mobile-phone-button {
        display: flex;
    }

    .mobile-nav-buttons {
        display: flex;
        z-index: 1001;
    }
}

.sliding-images {
    padding: 4rem 0;
    background-color: var(--gray-light);
    overflow: hidden;
}

.sliding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sliding-item {
    background-color: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.6s ease forwards;
}

.sliding-item:nth-child(2) {
    animation-delay: 0.2s;
}

.sliding-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sliding-image {
    height: 250px;
    overflow: hidden;
}

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

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

.sliding-content {
    padding: 1.5rem;
}

.sliding-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.sliding-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .sliding-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sliding-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .sliding-image {
        height: 200px;
    }

    .sliding-content h3 {
        font-size: 1.2rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cookie-text {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-settings {
    margin: 1rem 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.cookie-option label {
    margin-left: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.cookie-button-accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-button-accept:hover {
    background-color: #45a049;
}

.cookie-button-save {
    background-color: #f0f0f0;
    color: #333;
}

.cookie-button-save:hover {
    background-color: #e0e0e0;
}

.cookie-option input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
}

/* Intro Text Bereich */
.intro-text {
    padding: 4rem 0 1rem 0;
    background-color: var(--background-color);
}

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

.intro-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.intro-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .intro-text {
        padding: 2rem 1rem;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .intro-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Service List Styles */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.service-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0.5rem;
}

.service-description {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .service-list {
        margin: 1rem 0;
    }

    .service-list li {
        font-size: 0.95rem;
    }

    .service-description {
        font-size: 0.9rem;
    }
}

/* Hervorhebung für ausgewählte Service-Bereiche */
.service-item.highlight {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.2);
    border: 2px solid var(--primary-color);
}

@keyframes fadeHighlight {
    0% {
        transform: translateY(0);
        box-shadow: none;
    }
    100% {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(247, 148, 29, 0.2);
    }
}

.service-item.highlight {
    animation: fadeHighlight 0.5s ease forwards;
}

/* Zusätzliche Styles für die Leistungen-Seite */
.services-leistungen {
    margin-top: 2rem;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .services-leistungen {
        margin-top: 1.5rem;
        padding-top: 0.5rem;
    }
}

/* Anpassung für sliding-images auf der Leistungen-Seite */
.page-header + .sliding-images {
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .page-header + .sliding-images {
        padding-top: 1rem;
    }
}

main {
    flex: 1 0 auto;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 4rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-content h1 {
        margin-bottom: 0.25rem;
    }
    
    .hero-content h2 {
        margin-bottom: 1rem;
    }
}
