:root {
    --primary-color: #C0392B;
    --accent-color: #E74C3C;
    --light-gray: #F5F0E8;
    --dark-gray: #8B6F47;
    --white: #FFFFFF;
    --text-color: #4A3728;
    --border-color: #D9C5B0;
    --secondary-accent: #D35400;
    --cream: #FFF8F0;
    --heading-color: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.features h1,
.features h2,
.features h3,
.features h4,
.features h5,
.features h6,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
.section-title {
    color: #FFFFFF !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6,
.grid-item h1,
.grid-item h2,
.grid-item h3,
.grid-item h4,
.grid-item h5,
.grid-item h6,
.contact-info h1,
.contact-info h2,
.contact-info h3,
.contact-info h4,
.contact-info h5,
.contact-info h6,
.product-info h1,
.product-info h2,
.product-info h3,
.product-info h4,
.product-info h5,
.product-info h6,
.white-section h1,
.white-section h2,
.white-section h3 {
    color: #1A1A1A !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    background-color: #B36B55;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107,68,35,0.3);
}

input[type="email"],
input[type="text"],
input[type="tel"],
select,
textarea {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 135, 111, 0.1);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B4423' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

textarea {
    min-height: 150px;
}

input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

label {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.grid-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(107,68,35,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(217,197,176,0.3);
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(107,68,35,0.2);
    border-color: var(--accent-color);
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #95a5a6;
}

.grid-item-content {
    padding: 1.5rem;
}

.grid-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1A1A1A !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.grid-item-content p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.features {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    padding: 4rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.98);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1A1A1A !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.feature-item p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.product-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    padding: 3rem 2rem;
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-image-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #95a5a6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1A1A1A !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.product-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.contact-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--cream) 100%);
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107,68,35,0.1);
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1A1A1A !important;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 30px;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107,68,35,0.15);
    height: 450px;
    border: 2px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4A3728 100%);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon {
    width: 48px;
    height: 48px;
    stroke: var(--accent-color);
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    nav ul li {
        border-bottom: 1px solid var(--light-gray);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-main {
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

#cookieBanner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.cookie-banner-text {
    display: flex;
    align-items: start;
    flex: 1;
    min-width: 300px;
    width: 100%;
    box-sizing: border-box;
}

.cookie-banner-text > div {
    flex: 1;
    min-width: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background-color: #C0392B;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.cookie-btn-customize {
    background-color: var(--secondary-accent);
    color: var(--white);
}

.cookie-btn-customize:hover {
    background-color: #B8451A;
    transform: translateY(-2px);
}

#cookieSettings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.cookie-settings-modal {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 1;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-btn:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.cookie-settings-content {
    padding: 2rem;
}

.cookie-setting-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-setting-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
    background-color: var(--dark-gray);
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    #cookieBanner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-banner-text {
        min-width: 0;
        flex-direction: row;
        gap: 1rem;
    }
    
    .cookie-banner-text svg {
        flex-shrink: 0;
    }
    
    .cookie-banner-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 140px;
    }
    
    .cookie-settings-modal {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .cookie-settings-header,
    .cookie-settings-content,
    .cookie-settings-footer {
        padding: 1.5rem;
    }
}

@media (min-width: 321px) and (max-width: 768px) {
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 320px) {
    body {
        overflow-x: hidden;
        font-size: 0.9rem;
    }
    
    .header-container {
        padding: 0.75rem 0.5rem;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 0.85rem;
        letter-spacing: 0;
        padding: 0.25rem;
    }
    
    .menu-toggle {
        width: 20px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        padding: 0.5rem;
    }
    
    nav ul li a {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero {
        height: 300px;
        padding: 1rem 0.5rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-image {
        opacity: 0.2;
    }
    
    .container {
        padding: 2rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grid-item {
        margin-bottom: 1rem;
    }
    
    .grid-item img {
        height: 200px;
    }
    
    .grid-item-content {
        padding: 1rem;
    }
    
    .grid-item-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .grid-item-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .features {
        padding: 2rem 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .product-hero {
        padding: 2rem 0.75rem;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image-main {
        height: 250px;
    }
    
    .product-info h1,
    .product-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .contact-section {
        padding: 2rem 0.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 300px;
        border-radius: 8px;
    }
    
    form {
        padding: 1.5rem;
    }
    
    input[type="email"],
    input[type="text"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px;
        padding: 0.875rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    textarea {
        min-height: 120px;
    }
    
    label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    footer {
        padding: 2rem 0.75rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
        line-height: 1.8;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .footer-bottom a {
        font-size: 0.75rem;
        margin: 0.25rem 0;
        display: block;
    }
    
    table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table th,
    table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    ul, ol {
        padding-left: 1.25rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    li {
        margin-bottom: 0.5rem;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    div[style*="display: grid"],
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    div[style*="flex"],
    div[style*="display: flex"] {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
    }
    
    #cookieBanner {
        padding: 1rem 0.75rem;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        max-width: 100%;
        padding: 0;
    }
    
    .cookie-banner-text {
        flex-direction: column;
        min-width: 0 !important;
        width: 100%;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .cookie-banner-text svg {
        width: 32px !important;
        height: 32px !important;
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
        flex-shrink: 0;
    }
    
    .cookie-banner-text > div {
        width: 100%;
        min-width: 0;
    }
    
    .cookie-banner-text p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cookie-banner-text p strong {
        font-size: 0.85rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .cookie-banner-text a {
        font-size: 0.75rem;
        word-break: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        margin-top: 0.25rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cookie-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        white-space: normal;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cookie-settings-modal {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .cookie-settings-header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .cookie-settings-header h2 {
        font-size: 1.2rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-settings-content {
        padding: 1rem;
    }
    
    .cookie-setting-item {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .cookie-setting-header h3 {
        font-size: 1rem;
    }
    
    .cookie-setting-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .cookie-settings-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-settings-footer .cookie-btn {
        width: 100%;
        margin: 0;
    }
    
    body {
        overflow-x: hidden;
    }
    
    #cookieBanner * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    div[style*="font-size: 3.5rem"],
    div[style*="font-size: 3"] {
        font-size: 2rem !important;
    }
    
    div[style*="aspect-ratio"] {
        aspect-ratio: 1/1 !important;
        max-width: 100%;
    }
    
    div[style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }
    
    div[style*="max-width: 800px"],
    div[style*="max-width: 700px"],
    div[style*="max-width: 600px"] {
        max-width: 100% !important;
        padding: 1rem !important;
    }
    
    div[style*="text-align: center"] {
        padding: 0 0.5rem;
    }
    
    div[style*="background"],
    div[style*="background-color"] {
        padding: 1rem !important;
    }
    
    a[style*="padding: 1rem 2rem"] {
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem !important;
        width: 100%;
        justify-content: center;
    }
    
    .icon,
    svg.icon {
        width: 40px !important;
        height: 40px !important;
        max-width: 100%;
    }
    
    svg[style*="width: 60px"],
    svg[style*="width: 80px"] {
        width: 40px !important;
        height: 40px !important;
    }
    
    .feature-icon {
        font-size: 2rem !important;
        width: 2rem;
        height: 2rem;
    }
    
    .contact-icon {
        font-size: 1.2rem !important;
        min-width: 24px;
    }
    
    p[style*="font-size: 1.1rem"],
    p[style*="font-size: 1.2rem"],
    p[style*="font-size: 1.3rem"] {
        font-size: 0.9rem !important;
    }
    
    h1[style*="font-size"],
    h2[style*="font-size"],
    h3[style*="font-size"] {
        font-size: 1.3rem !important;
        line-height: 1.3;
    }
    
    div[style*="margin-top: 3rem"],
    div[style*="margin-top: 4rem"],
    section[style*="padding: 4rem"],
    section[style*="padding: 5rem"] {
        margin-top: 1.5rem !important;
        padding: 2rem 0.75rem !important;
    }
    
    div[style*="padding: 2rem"],
    div[style*="padding: 3rem"] {
        padding: 1rem 0.75rem !important;
    }
    
    div[style*="gap: 2rem"],
    div[style*="gap: 3rem"],
    div[style*="gap: 4rem"] {
        gap: 1rem !important;
    }
    
    div[style*="border-radius: 15px"],
    div[style*="border-radius: 10px"] {
        border-radius: 8px !important;
    }
    
    div[style*="box-shadow"],
    .grid-item,
    .contact-info,
    .feature-item {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    iframe {
        width: 100% !important;
        height: auto;
        min-height: 300px;
    }
    
    .container,
    section.container {
        width: 100%;
        max-width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    p, span, div, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    a {
        font-size: 0.85rem;
    }
    
    strong {
        font-weight: 600;
    }
    
    code, pre {
        font-size: 0.75rem;
        overflow-x: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
    }
    
    div[style*="text-align: center"][style*="padding: 2rem"] {
        padding: 1rem !important;
    }
    
    div[style*="font-size: 3.5rem"][style*="font-weight: bold"] {
        font-size: 1.75rem !important;
    }
    
    div[style*="font-style: italic"] {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    div[style*="font-size: 2rem"][style*="color"] {
        font-size: 1.25rem !important;
    }
    
    div[style*="min-width: 40px"][style*="height: 40px"],
    div[style*="min-width: 50px"][style*="height: 50px"] {
        min-width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    div[style*="padding: 2.5rem"],
    div[style*="padding: 3rem"] {
        padding: 1.5rem 1rem !important;
    }
    
    div[style*="gap: 1.5rem"],
    div[style*="gap: 2rem"],
    div[style*="gap: 3rem"] {
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(3"],
    div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(4"],
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }
    
    p[style*="font-size: 1.3rem"],
    p[style*="font-size: 1.2rem"] {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .hero-content {
        padding: 1rem 0.75rem !important;
    }
    
    .grid-item .cta-button,
    .feature-item .cta-button {
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    form input,
    form select,
    form textarea {
        font-size: 16px;
        padding: 0.875rem;
        margin-bottom: 1rem;
    }
    
    form label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    select {
        padding-right: 2.5rem !important;
        font-size: 16px;
    }
    
    input[type="checkbox"],
    input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 0.5rem;
    }
    
    label[style*="display: flex"] {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    span[style*="background"],
    span[style*="padding: 0.5rem"] {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    hr,
    div[style*="border-top"],
    div[style*="border-bottom"] {
        margin: 1rem 0 !important;
    }
    
    div[style*="margin: 2rem"],
    div[style*="margin: 3rem"],
    div[style*="margin: 4rem"] {
        margin: 1rem 0 !important;
    }
    
    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
}

