    :root {
        --primary-color: #8B0E2E;    /* Zengin bordo tonu */
        --secondary-color: #E8B75D;
        --text-color: #333333;
        --light-gray: #F5F5F5;
        --white: #FFFFFF;
        --hover-color: #A61638;     /* Biraz daha parlak bordo */
        --active-color: #6E0B24;    /* Daha koyu bordo */
    }

    body {
        font-family: 'Poppins', sans-serif;
        color: var(--text-color);
        line-height: 1.6;
    }

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 1002;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-links {
    display: flex;
    gap: 20px;
}

.contact-links a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    position: relative;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size:20px;
}

.social-link {
    color: var(--white);
    transition: opacity 0.3s;
}

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

.header {
    position: relative;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    z-index: 1001;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 150px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-header {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 2px 0px rgba(0,0,0,0.1);
    border-radius: 0px 0px 4px 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--hover-color);
    background: var(--light-gray);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

    /*SLIDER BOLUMU */

    .hero-banner {
        background: linear-gradient(rgba(43,49,71,0.8), rgba(43,49,71,0.8)), url('../img/banner.webp');
        background-size: cover;
        background-position: center;
        height: 700px;
        color: var(--white);
        text-align: center;
        display: flex;
        align-items: center;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        background: #8b0e2e;
        color: var(--white);
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .cta-button:hover {
        background: #fefefe;
        color:#8b0e2e;
    }

    .cta-button:active {
        background: #fefefe;
        color:#8b0e2e;
    }

    .mobile-menu {
        display: none;
    }

    .nav-menu a {
    font-weight: 600;
    } 

    /*HAKKIMIZDA STARTSEITE */

    .services {
        padding: 80px 0;
        background-color: var(--light-gray);
    }

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

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .section-header p {
        color: #666;
        font-size: 1.1em;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .service-card {
        background: var(--white);
        padding: 20px 12px;
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex; 
        flex-direction: column;
        height: 100%;       
    }

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

    .service-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }

    .service-icon i {
        font-size: 24px;
        color: var(--white);
    }

    .service-card h3 {
        font-size: 1.1em;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .service-card p {
        color: #666;
        font-size: 0.85em;
        margin-bottom: 15px;
        line-height: 1.6;
        flex-grow: 1; 
    }

    .service-link {
        display: inline-block;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        padding-bottom: 2px;
        margin-top: auto;
    }

    .service-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .service-link:hover::after {
        width: 100%;
    }

    /* NEDEN BIZ ? */

    .why-us {
        padding: 80px 0;
        background: var(--light-white);
    }

    .why-us-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 50px;
    }

    .why-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
        background: var(--light-gray);
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .why-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .why-icon i {
        font-size: 24px;
        color: var(--white);
    }

    .why-content h3 {
        font-size: 1.3em;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .why-content p {
        font-size: 0.95em;
        color: #666;
        line-height: 1.6;
    }

    /* HAKKIMIZDA STARTSEITE */

    .about-us {
        padding: 100px 0;
        background: var(--light-gray);
        position: relative;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-content {
        padding-right: 50px;
    }

    .about-content h2 {
        font-size: 1.62em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .subtitle {
        display: block;
        font-size: 1.2em;
        color: var(--primary-color);
        margin-bottom: 25px;
    }

    .about-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-btn {
        display: inline-block;
        padding: 12px 30px;
        background: var(--primary-color);
        color: var(--white);
        text-decoration: none;
        border-radius: 5px;
        margin-top: 20px;
        transition: background 0.3s ease;
    }

    .about-btn:hover {
        background: var(--hover-color);
    }

    .about-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url('../img/uber-uns.webp') center center/cover no-repeat;
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, 
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,0.8) 20%,
            rgba(255,255,255,0) 40%,
            rgba(255,255,255,0) 60%,
            rgba(255,255,255,0.8) 80%,
            rgba(255,255,255,1) 100%
        );
    }

    /* IS AKISI STARTSEITE */

    .process {
        padding: 80px 0;
        background: var(--light-white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .section-header p {
        color: #666;
        font-size: 1.1em;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        position: relative;
    }

    .process-steps::after {
        content: '';
        position: absolute;
        top: 40px;
        left: 60px;
        right: 60px;
        height: 2px;
        background: var(--primary-color);
        z-index: 1;
    }

    .step {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        position: relative;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .step-icon i {
        font-size: 24px;
        color: var(--primary-color);
    }

    .step-number {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
    }

    .step h3 {
        font-size: 1.2em;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .step p {
        color: #666;
        font-size: 0.9em;
        line-height: 1.5;
    }

    /* MUSTERI YORUMLARI STARTSEITE */

    .testimonials {
        padding: 80px 0;
        background: var(--light-gray);
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .section-header p {
        color: #666;
        font-size: 1.1em;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .testimonial-item {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

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

    .rating {
        color: #FFD700;
        margin-bottom: 15px;
    }

    .rating i {
        margin-right: 2px;
    }

    .testimonial-text {
        font-size: 0.95em;
        line-height: 1.6;
        color: #666;
        margin-bottom: 20px;
        min-height: 80px;
    }

    .client-info h4 {
        font-size: 1.1em;
        color: var(--text-color);
        margin-bottom: 5px;
    }

    .client-info span {
        font-size: 0.9em;
        color: #666;
    }

    /* FOOTER */

    .footer {
        background: var(--primary-color);
        color: var(--white);
        padding: 70px 0 0;
    }

    .footer-main-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-company-info {
        margin-right: 20px;
    }

    .footer-brand-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .footer-company-info p {
        font-size: 0.9em;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .footer-contact-details {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact-details a,
    .footer-contact-details p {
        color: var(--white);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9em;
        margin-bottom: 0;
    }

    .footer-title {
        color: var(--white);
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .footer-quick-links ul,
    .footer-our-services ul {
        list-style: none;
        padding: 0;
    }

    .footer-quick-links li,
    .footer-our-services li {
        margin-bottom: 10px;
    }

    .footer-quick-links a,
    .footer-our-services a {
        color: var(--white);
        text-decoration: none;
        font-size: 0.9em;
        transition: color 0.3s ease;
    }

    .footer-quick-links a:hover,
    .footer-our-services a:hover {
        color: var(--light-gray);
    }

    .footer-social-media {
        display: flex;
        gap: 15px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        border: 1px solid var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-social-link:hover {
        background: var(--white);
        color: var(--primary-color);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9em;
    }

    .footer-bottom p {
        color: var(--white);
    }

    .footer-bottom a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-bottom a:hover {
        color: var(--light-gray);
    }

    .footer-legal-links {
        display: flex;
        gap: 20px;
    }

    /* SAYFA BANNERI */

    .page-banner {
        background: linear-gradient(rgba(43,49,71,0.8), rgba(43,49,71,0.8)), url('../img/seite-banner.webp');
        background-size: cover;
        background-position: center;
        height: 300px;
        display: flex;
        align-items: center;
        color: var(--white);
        position: relative;
    }

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

    .banner-content h1 {
        font-size: 2.5em;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 0.95em;
    }

    .breadcrumb a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb a:hover {
        color: var(--light-gray);
    }

    .breadcrumb i {
        font-size: 12px;
        color: var(--light-gray);
    }

    .breadcrumb span {
        color: var(--light-gray);
    }

    /* UBER UNS */

    .about-history {
        padding: 100px 0;
        background: var(--white);
    }

    .history-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .history-content {
        padding-right: 20px;
    }

    .subtitle {
        color: var(--primary-color);
        font-size: 1.1em;
        font-weight: 500;
        margin-bottom: 15px;
        display: block;
    }

    .history-content h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 20px;
    }

    .history-content > p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .mission-values {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .mission-item h3 {
        color: var(--text-color);
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .mission-item p {
        color: #666;
        line-height: 1.6;
    }

    .company-values h3 {
        color: var(--text-color);
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .company-values ul {
        list-style: none;
        padding: 0;
    }

    .company-values li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .company-values i {
        color: var(--primary-color);
        font-size: 1.1em;
    }

    .company-values span {
        color: #666;
    }

    .about-history {
        padding: 100px 0;
        background: var(--white);
        position: relative;
    }

    .history-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .history-content {
        max-width: 600px;
    }

    .history-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
    }

    .history-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .history-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right,
            rgba(255,255,255,0.95) 0%,
            rgba(255,255,255,0.8) 20%,
            rgba(255,255,255,0.4) 40%,
            rgba(255,255,255,0) 100%
        );
        z-index: 1;
    }

    .stats-section {
        padding: 100px 0;
        background: var(--light-gray);
        position: relative;
    }

    .stats-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .stats-header h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .stats-header p {
        color: #666;
        font-size: 1.1em;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .stat-item {
        background: var(--white);
        padding: 40px 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-10px);
    }

    .stat-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        background: var(--primary-color);
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .stat-icon i {
        font-size: 30px;
        color: var(--white);
    }

    .stat-number {
        font-size: 3em;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        line-height: 1;
    }

    .stat-item p {
        color: #666;
        font-size: 1.1em;
        line-height: 1.4;
    }

    /* SIRKET DEGERLERI UBER UNS */

    .company-policies {
        padding: 100px 0;
        background: var(--white);
    }

    .policy-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .policy-header h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .policy-header p {
        color: #666;
        font-size: 1.1em;
    }

    .policy-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .policy-item {
        background: var(--light-gray);
        padding: 40px;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .policy-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .policy-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .policy-icon i {
        font-size: 30px;
        color: var(--white);
    }

    .policy-content h3 {
        font-size: 1.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .policy-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .policy-list {
        list-style: none;
        padding: 0;
    }

    .policy-list li {
        color: #666;
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

    .policy-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--primary-color);
        border-radius: 50%;
    }

    /* FAQ */

    .faq-section {
        padding: 100px 0;
        background: var(--light-gray);
    }

    .faq-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .faq-header h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .faq-header p {
        color: #666;
        font-size: 1.1em;
    }

    .faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--white);
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .faq-question {
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-question span {
        font-size: 1.1em;
        color: var(--text-color);
        font-weight: 500;
    }

    .faq-question i {
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .faq-answer {
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
        padding: 0 30px;
    }

    .faq-answer p {
        color: #666;
        line-height: 1.6;
        padding-bottom: 20px;
    }

    .faq-item.active .faq-question {
        background: var(--primary-color);
    }

    .faq-item.active .faq-question span,
    .faq-item.active .faq-question i {
        color: var(--white);
    }

    .faq-item.active .faq-question i {
        transform: rotate(45deg);
    }

    .faq-item.active .faq-answer {
        height: auto;
        opacity: 1;
        padding: 20px 30px;
    }

    /* PROJEKTE */

    .projects-section {
        padding: 100px 0;
        background: var(--white);
    }

    .project-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .project-header h2 {
        font-size: 2.5em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .project-header p {
        color: #666;
        font-size: 1.1em;
    }

    .project-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .project-item {
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .project-item:hover {
        transform: translateY(-10px);
    }

    .project-image {
        position: relative;
        height: 300px;
        overflow: hidden;
    }

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

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

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(139, 14, 46, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .project-item:hover .project-overlay {
        opacity: 1;
    }

    .project-link {
        width: 50px;
        height: 50px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 20px;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .project-item:hover .project-link {
        transform: translateY(0);
    }

    .project-info {
        padding: 25px;
    }

    .project-category {
        color: var(--primary-color);
        font-size: 0.9em;
        display: block;
        margin-bottom: 10px;
    }

    .project-info h3 {
        font-size: 1.3em;
        color: var(--text-color);
        margin-bottom: 5px;
    }

    .project-info p {
        color: #666;
        font-size: 0.9em;
    }

    /* IMPRESSUM */

    .legal-notice {
        padding: 100px 0;
        background: var(--light-gray);
        min-height: 100vh;
    }

    .legal-content {
        max-width: 800px;
        margin: 0 auto;
        background: var(--white);
        padding: 60px;
        border-radius: 10px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .legal-content h1 {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 40px;
        font-weight: 600;
        text-align: center; /* Eklendi */
    }

    .company-details {
        margin-bottom: 40px;
        padding-left: 20px;
        border-left: 3px solid var(--primary-color);
    }

    .company-name {
        font-size: 1.2em;
        font-weight: 600;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .company-details p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 5px;
    }

    .details-group {
        margin-bottom: 40px;
    }

    .detail-item {
        display: flex;
        margin-bottom: 15px;
    }

    .detail-item span {
        width: 120px;
        color: var(--text-color);
        font-weight: 500;
    }

    .detail-item a {
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .detail-item a:hover {
        color: var(--hover-color);
    }

    .legal-group {
        background: var(--light-gray);
        padding: 30px;
        border-radius: 8px;
    }

    .legal-item {
        display: flex;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .legal-item:last-child {
        margin-bottom: 0;
    }

    .legal-item span {
        width: 180px;
        color: var(--text-color);
        font-weight: 500;
    }

    .legal-item p {
        color: #666;
    }

    /* KONTAKT */

    .contact {
        padding: 100px 0;
        background: var(--light-gray);
    }

    .section-title {
        text-align: center;
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 50px;
        font-weight: 600;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-info-1 {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .info-card {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .info-card h3 {
        font-size: 1.3em;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: 600;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }

    .info-item i {
        color: var(--primary-color);
        font-size: 20px;
        width: 20px;
    }

    .info-item p, 
    .info-item a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .info-item a:hover {
        color: var(--primary-color);
    }

    .office-hours {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .office-hours h3 {
        font-size: 1.3em;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: 600;
    }

    .hours-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        color: #666;
    }

    .hours-item:last-child {
        margin-bottom: 0;
    }

    .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .contact-form-container {
        background: var(--white);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        color: var(--text-color);
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: 'Poppins', sans-serif;
        font-size: 1em;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        outline: none;
    }

    .captcha-container {
        margin: 15px 0;
        width: ;
    }

    .captcha-code {
        background: linear-gradient(135deg, #8b0e2e 0%, #6e0b24 100%);
        padding: 15px;
        border-radius: 5px;
        color: #fff;
        font-size: 24px;
        letter-spacing: 8px;
        font-family: 'Courier New', monospace;
        text-align: center;
        margin-bottom: 15px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        width: 40%;
    }

    #captcha {
        width: 38%;
    }

    .submit-btn {
        background: var(--primary-color);
        color: var(--white);
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        font-size: 1em;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 10px;
    }

    .submit-btn:hover {
        background: var(--hover-color);
    }

    .alert {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 5px;
        text-align: center;
    }

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

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

    .section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    }

    .section-description {
        text-align: center;
        color: #666;
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 50px;
        line-height: 1.6;
    }

    /* Innenarchitektur Seite */

    .interior-service-intro {
        padding: 100px 0;
        background: var(--white);
    }

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

    .interior-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .interior-intro-content h2 {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 25px;
    }

    .interior-intro-description {
        font-size: 1.1em;
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .interior-intro-expertise {
        font-size: 1.1em;
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .interior-intro-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .interior-feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .interior-feature-item i {
        color: var(--primary-color);
        font-size: 18px;
    }

    .interior-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Process Section */
    .interior-process-section {
        padding: 100px 0;
        background: var(--light-gray);
    }

    .interior-process-section h2 {
        text-align: center;
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .interior-process-description {
        text-align: center;
        color: #666;
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 50px;
    }

    .interior-timeline-horizontal {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 30px;
        padding: 40px 0;
        position: relative;
    }

    .interior-timeline-horizontal::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        top: 85px;
        left: 0;
    }

    .interior-timeline-item {
        flex: 1;
        text-align: center;
        position: relative;
        padding-top: 60px;
    }

    .interior-timeline-icon {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        z-index: 1;
    }

    .interior-timeline-content {
        background: var(--white);
        padding: 25px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .interior-timeline-content h3 {
        color: var(--primary-color);
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .interior-timeline-content p {
        color: #666;
        line-height: 1.6;
        flex-grow: 1;
    }

    /* Advantages Section */
    .interior-advantages {
        padding: 100px 0;
        background: var(--white);
    }

    .interior-section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .interior-section-header h2 {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .interior-section-header p {
        color: #666;
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto;
    }

    .interior-advantages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .interior-advantage-card {
        background: var(--light-gray);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

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

    .interior-advantage-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .interior-advantage-icon i {
        color: var(--white);
        font-size: 28px;
    }

    .interior-advantage-card h3 {
        font-size: 1.4em;
        color: var(--text-color);
        margin-bottom: 15px;
    }

    .interior-advantage-card p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .interior-advantage-list {
        list-style: none;
        padding: 0;
    }

    .interior-advantage-list li {
        color: #666;
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .interior-advantage-list li::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--primary-color);
        border-radius: 50%;
    }

    .eserbau-tapezieren-section {
    padding: 100px 0;
    background: var(--white);
    }

    .eserbau-tapezieren-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .eserbau-tapezieren-header h2 {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .eserbau-tapezieren-header p {
        color: #666;
        font-size: 1.1em;
    }

    .eserbau-tapezieren-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin-top: 50px;
    }

    .eserbau-tapezieren-description {
        font-size: 1.1em;
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .eserbau-tapezieren-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .eserbau-feature {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .eserbau-feature i {
        color: var(--primary-color);
        font-size: 18px;
    }

    .eserbau-tapezieren-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .eserbau-tapezieren-item {
        background: var(--light-gray);
        padding: 30px;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

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

    .eserbau-tapezieren-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .eserbau-tapezieren-icon i {
        color: var(--white);
        font-size: 24px;
    }

    .eserbau-tapezieren-item h3 {
        color: var(--text-color);
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .eserbau-tapezieren-item p {
        color: #666;
        line-height: 1.6;
    }

    .eserbau-tapezieren-additional {
        margin-top: 80px;
        background: var(--light-gray);
        padding: 50px;
        border-radius: 10px;
    }

    .eserbau-tapezieren-additional h3 {
        text-align: center;
        color: var(--primary-color);
        font-size: 2em;
        margin-bottom: 40px;
    }

    .eserbau-service-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .eserbau-service-column h4 {
        color: var(--text-color);
        font-size: 1.2em;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);
    }

    .eserbau-service-column ul {
        list-style: none;
        padding: 0;
    }

    .eserbau-service-column ul li {
        margin-bottom: 12px;
        color: #666;
        position: relative;
        padding-left: 25px;
    }

    .eserbau-service-column ul li:before {
        content: '•';
        color: var(--primary-color);
        position: absolute;
        left: 0;
        font-size: 1.2em;
    }

    .eserbau-trockenbau-section {
       padding: 100px 0;
       background: var(--white);
    }

    .eserbau-trockenbau-header {
       text-align: center;
       margin-bottom: 50px;
    }

    .eserbau-trockenbau-header h2 {
       font-size: 2.5em;
       color: var(--primary-color);
       margin-bottom: 15px;
       font-weight: 600;
    }

    .eserbau-trockenbau-header p {
       color: #666;
       font-size: 1.1em;
    }

    .eserbau-trockenbau-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 50px;
       margin-top: 50px;
    }

    .eserbau-trockenbau-description {
       font-size: 1.1em;
       color: #666;
       line-height: 1.8;
       margin-bottom: 30px;
    }

    .eserbau-trockenbau-features {
       display: flex;
       flex-direction: column;
       gap: 20px;
    }

    .eserbau-feature {
       display: flex;
       align-items: center;
       gap: 15px;
    }

    .eserbau-feature i {
       color: var(--primary-color);
       font-size: 18px;
    }

    .eserbau-trockenbau-items {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 30px;
    }

    .eserbau-trockenbau-item {
       background: var(--light-gray);
       padding: 30px;
       border-radius: 10px;
       transition: transform 0.3s ease;
    }

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

    .eserbau-trockenbau-icon {
       width: 60px;
       height: 60px;
       background: var(--primary-color);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 20px;
    }

    .eserbau-trockenbau-icon i {
       color: var(--white);
       font-size: 24px;
    }

    .eserbau-trockenbau-item h3 {
       color: var(--text-color);
       font-size: 1.3em;
       margin-bottom: 15px;
    }

    .eserbau-trockenbau-item p {
       color: #666;
       line-height: 1.6;
    }

    .eserbau-trockenbau-services {
       margin-top: 80px;
       padding: 50px;
       background: var(--light-gray);
       border-radius: 10px;
    }

    .eserbau-services-list h3 {
       color: var(--primary-color);
       font-size: 1.8em;
       margin-bottom: 30px;
       text-align: center;
    }

    .eserbau-services-list ul {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 20px;
       list-style: none;
       padding: 0;
    }

    .eserbau-services-list li {
       position: relative;
       padding-left: 25px;
       color: #666;
       font-size: 1.1em;
    }

    .eserbau-services-list li:before {
       content: '•';
       color: var(--primary-color);
       position: absolute;
       left: 0;
       font-size: 1.2em;
    }

    .eserbau-bodenleger-section,
.eserbau-raumausstatter-section {
    padding: 100px 0;
    background: var(--white);
}

.eserbau-bodenleger-header,
.eserbau-raumausstatter-header {
    text-align: center;
    margin-bottom: 50px;
}

.eserbau-bodenleger-header h2,
.eserbau-raumausstatter-header h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.eserbau-bodenleger-header p,
.eserbau-raumausstatter-header p {
    color: #666;
    font-size: 1.1em;
}

.eserbau-bodenleger-grid,
.eserbau-raumausstatter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.eserbau-bodenleger-description,
.eserbau-raumausstatter-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.eserbau-bodenleger-features,
.eserbau-raumausstatter-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eserbau-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.eserbau-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.eserbau-bodenleger-items,
.eserbau-raumausstatter-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.eserbau-bodenleger-item,
.eserbau-raumausstatter-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.eserbau-bodenleger-item:hover,
.eserbau-raumausstatter-item:hover {
    transform: translateY(-5px);
}

.eserbau-bodenleger-icon,
.eserbau-raumausstatter-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eserbau-bodenleger-icon i,
.eserbau-raumausstatter-icon i {
    color: var(--white);
    font-size: 24px;
}



    /* DATENSCHUTZ */

    .interior-datenschutz {
       padding: 80px 0;
       background-color: #f9f9f9;
    }

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

    .interior-datenschutz h2 {
       font-size: 36px;
       color: #333;
       margin-bottom: 40px;
       text-align: center;
       font-weight: 600;
    }

    .interior-datenschutz-content {
       background: #fff;
       padding: 40px;
       border-radius: 8px;
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

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

    .interior-datenschutz-section:last-child {
       border-bottom: none;
       margin-bottom: 0;
       padding-bottom: 0;
    }

    .interior-datenschutz-section h3 {
       font-size: 24px;
       color: #222;
       margin-bottom: 20px;
       font-weight: 600;
    }

    .interior-datenschutz-section h4 {
       font-size: 20px;
       color: #333;
       margin: 25px 0 15px;
       font-weight: 500;
    }

    .interior-datenschutz-section h5 {
       font-size: 18px;
       color: #444;
       margin: 20px 0 10px;
       font-weight: 500;
    }

    .interior-datenschutz-section p {
       font-size: 16px;
       line-height: 1.6;
       color: #666;
       margin-bottom: 15px;
    }

    /* AGB */

    .interior-agb {
       padding: 80px 0;
       background-color: #f9f9f9;
    }

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

    .interior-agb h2 {
       font-size: 36px;
       color: #333;
       margin-bottom: 40px;
       text-align: center;
       font-weight: 600;
    }

    .interior-agb-content {
       background: #fff;
       padding: 40px;
       border-radius: 8px;
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

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

    .interior-agb-section:last-child {
       border-bottom: none;
       margin-bottom: 0;
       padding-bottom: 0;
    }

    .interior-agb-section h3 {
       font-size: 24px;
       color: #222;
       margin-bottom: 20px;
       font-weight: 600;
    }

    .interior-agb-section h4 {
       font-size: 20px;
       color: #333;
       margin: 25px 0 15px;
       font-weight: 500;
    }

    .interior-agb-section p {
       font-size: 16px;
       line-height: 1.6;
       color: #666;
       margin-bottom: 15px;
    }

    .interior-agb-section ul {
       padding-left: 20px;
       margin: 15px 0;
    }

    .interior-agb-section ul li {
       margin-bottom: 10px;
       color: #666;
    }

    .interior-agb-update {
       font-style: italic;
       color: #888;
       text-align: right;
    }

    /* COKIE */

    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        color: #fff;
        padding: 20px;
        z-index: 9999;
        display: none;
    }

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

    .cookie-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cookie-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #ccc;
    }

    .cookie-buttons {
        margin-bottom: 15px;
    }

    .btn-accept, .btn-essential {
        padding: 12px 25px;
        margin: 0 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s ease;
    }

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

    .btn-accept:hover {
        background: #45a049;
    }

    .btn-essential {
        background: #666;
        color: white;
    }

    .btn-essential:hover {
        background: #555;
    }

    .cookie-more-info {
        color: #4CAF50;
        text-decoration: none;
        font-size: 14px;
    }

    .cookie-more-info:hover {
        text-decoration: underline;
    }

    /* 404 SEITE */

    .eserbau-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 20px;
}

.eserbau-404-container {
    text-align: center;
    max-width: 600px;
    background: var(--white);
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.eserbau-404-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.eserbau-404-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.eserbau-404-title {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.eserbau-404-message {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.eserbau-404-button-container {
    display: flex;
    justify-content: center;
}

.eserbau-404-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.eserbau-404-button:hover {
    background: var(--hover-color);
}

.baumeister {
    width: 200px;
    height: 100px;
    margin-left: 10px;
    margin-right: -80px;
}
