/* Base styling */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

/* Modern Header with Glassmorphism */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

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

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

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #3498db;
    bottom: 0;
    left: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:hover {
    color: #3498db;
}

nav ul li a:hover:after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.nav-cta:hover:before {
    left: 100%;
}

.nav-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Mobile menu icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), 
                url('img/logo1.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 140px 5%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgNTYgMTAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNTYiIGhlaWdodD0iMTAwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNMjggNjZMMCA1MEwyOCAzNGwyOCAxNi0yOCAxNnpNMjggMzRMMCA1MEwyOCA2NmwyOC0xNi0yOC0xNnpNMjggMEwwIDE2bDI4IDE2TDU2IDE2IDI4IDB6IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1vcGFjaXR5PSIwLjA3IiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    opacity: 0.1;
    z-index: 1;
}

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideIn 1s ease-out;
    animation-fill-mode: both;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideIn 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero .cta-buttons {
    animation: slideIn 1s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

/* Buttons */
.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons a, .cta-button, button.cta-button {
    display: inline-block;
    padding: 12px 28px;
    margin: 5px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-center .btn-secondary {
    background: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #e9ecef;
}

.cta-center .btn-secondary:hover {
    background: #e9ecef;
}

/* Sections */
.section, .section-alt {
    padding: 100px 5%;
    width: 100%;
}

.section {
    background: #fff;
}

.section-alt {
    background: #f8f9fa;
}

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

.section h2, .section-alt h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.3rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Services section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    width: 100%;
}

/* Modern Service Cards */
.service {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateY(0);
    animation: slideIn 0.6s ease-out;
    animation-fill-mode: both;
}

.service:nth-child(1) { animation-delay: 0.2s; }
.service:nth-child(2) { animation-delay: 0.4s; }
.service:nth-child(3) { animation-delay: 0.6s; }

.service:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #3498db;
    animation: float 3s ease-in-out infinite;
}

.service h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Features/Why Us section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    width: 100%;
}

.feature {
    padding: 30px 25px;
    border-radius: 8px;
    transition: transform 0.3s;
    text-align: center;
}

.feature-icon {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3498db;
}

.feature h3 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Special offer */
.special-offer {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 0.9rem;
}

.special-offer h3 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.special-offer .btn-primary {
    background: #fff;
    color: #3498db;
}

.special-offer .btn-primary:hover {
    background: #f8f9fa;
    color: #2980b9;
}

.special-offer .glow-button {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    animation: pulse 2s infinite;
    display: inline-block;
    text-align: center;
    width: auto;
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
}

.special-offer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Process steps */
.process-wrapper {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-steps {
    position: relative;
}

.process-steps:before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background: #e0e0e0;
}

/* Enhanced Process Steps */
.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideIn 0.8s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(1) { animation-delay: 0.3s; }
.process-step:nth-child(2) { animation-delay: 0.6s; }
.process-step:nth-child(3) { animation-delay: 0.9s; }

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Materials section */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
    width: 100%;
}

/* Modern Material Cards */
.material-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 25px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: slideIn 0.6s ease-out;
    animation-fill-mode: both;
}

.material-card:nth-child(1) { animation-delay: 0.1s; }
.material-card:nth-child(2) { animation-delay: 0.2s; }
.material-card:nth-child(3) { animation-delay: 0.3s; }
.material-card:nth-child(4) { animation-delay: 0.4s; }
.material-card:nth-child(5) { animation-delay: 0.5s; }

.material-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.material-icon {
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.4rem;
    color: #3498db;
}

.material-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Video section */
.video-container {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    width: 100%;
}

.video-container h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: #2c3e50;
}

.video-player {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 20px auto;
    display: block;
    background: #000;
}

@media (max-width: 768px) {
    .video-player {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 15px auto;
    }
}

/* FAQ section */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

/* Modern FAQ Section */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
}

.faq-toggle {
    color: #3498db;
    padding-left: 15px;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #7f8c8d;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
}

.form-group {
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

input, textarea, button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus, textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
}

button.cta-button {
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button.cta-button:hover {
    background-color: #2980b9;
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.file-upload input {
    padding: 12px;
    margin-bottom: 5px;
}

.file-hint {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Download area */
.download-area {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    border-top: 1px solid #e0e0e0;
}

.download-area h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.download-link {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.download-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.download-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 60px;
    width: 100%;
}

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

.footer-logo {
    height: 50px;
    width: auto;
}


.footer-about p {
    margin-top: 15px;
    line-height: 1.7;
}

.footer h3 {
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #3498db;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: #3498db;
}

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

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

.footer-links a {
    display: inline-block;
    transition: transform 0.3s;
}

.footer-links a:hover {
    transform: translateX(5px);
}

/* Copyright */
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Animation for scroll effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design - Desktop first approach */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 10px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section, .section-alt {
        padding: 70px 15px;
    }
    
    .special-offer {
        width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-container {
        flex-wrap: wrap;
        padding: 15px 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .menu-toggle {
        order: 2;
    }
    
    nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        margin-top: 20px;
        padding: 10px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .nav-cta {
        order: 4;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    
    .hero {
        padding: 100px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section, .section-alt {
        padding: 50px 15px;
    }
    
    .services, .features, .materials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .process-steps:before {
        left: 20px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .special-offer {
        padding: 30px 15px;
        width: 100%;
    }
    
    .special-offer h3 {
        font-size: 1.5rem;
    }

    .video-placeholder {
        height: 350px;
    }

    .video-player {
        max-width: 100%;
        height: auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-logo {
        height: 50px;
        margin: 0 auto 15px;
    }

    .special-offer .glow-button {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 10px auto;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons a {
        width: 100%;
        margin: 5px 0;
    }
    
    .section h2, .section-alt h2 {
        font-size: 1.8rem;
    }
    
    .services, .features, .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .video-placeholder {
        height: 250px;
    }

    .feature-icon, .material-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .offer-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

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

    .footer h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        height: 50px;
        max-width: 100%;
    }

    .special-offer .glow-button {
        padding: 10px 15px;
        font-size: 0.9rem;
        white-space: normal;
        height: auto;
        line-height: 1.4;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .service, .feature, .material-card {
        padding: 20px 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
    
    .special-offer {
        padding: 20px 10px;
    }
    
    form {
        padding: 0 5px;
    }
}

/* Impressum Styles */
.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.impressum-content h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.impressum-content h2 {
    color: #3498db;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.impressum-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.impressum-content .source {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.impressum-content .source a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-content .source a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-button.accept {
    background: #2ecc71;
    color: white;
}

.cookie-button.accept:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.cookie-button.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-button.decline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* AGB Styles */
.update-info {
    margin-top: 60px;
    text-align: right;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-style: italic;
}

.impressum-content h2 {
    margin-top: 40px;
    color: #2c3e50;
    font-size: 1.4rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.impressum-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.impressum-content h3 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.impressum-content h4 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
