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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 32px;
    z-index: 999;
}

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e74c3c;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-content-offset {
    display: flex;
    position: relative;
    padding: 80px 60px;
    align-items: center;
}

.hero-text-block {
    position: relative;
    z-index: 10;
    max-width: 480px;
    margin-left: 80px;
    color: #ffffff;
}

.hero-text-block h1 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-image-overlap {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 700px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: #34495e;
}

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

.intro-offset {
    display: flex;
    padding: 120px 60px 100px 120px;
    gap: 80px;
    align-items: flex-start;
    background: #f8f9fa;
}

.intro-narrow {
    flex: 1;
    max-width: 550px;
    transform: translateY(40px);
}

.intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.intro-side-visual {
    flex: 1;
    position: relative;
    margin-top: -60px;
    max-width: 500px;
    background: #dfe6e9;
}

.intro-side-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

.story-flow {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    position: relative;
    background: #ffffff;
}

.story-block-left {
    flex: 1;
    max-width: 480px;
    padding-right: 40px;
}

.story-block-left h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.story-block-right-overlap {
    flex: 1;
    position: relative;
    transform: translateY(-50px);
    background: #ecf0f1;
}

.story-block-right-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    object-fit: cover;
}

.overlay-stat {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #e74c3c;
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(231,76,60,0.4);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 16px;
    margin-top: 8px;
}

.problem-amplification {
    display: flex;
    padding: 100px 100px 100px 60px;
    gap: 70px;
    background: linear-gradient(to right, #ffeaa7 0%, #fdcb6e 100%);
    align-items: center;
}

.problem-card-offset {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    max-width: 500px;
}

.problem-card-offset h3 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 28px;
    font-weight: 700;
}

.problem-visual-shifted {
    flex: 1;
    transform: translateY(30px);
    background: #dfe6e9;
}

.problem-visual-shifted img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.solution-reveal {
    padding: 120px 60px;
    background: #f8f9fa;
}

.solution-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
}

.solution-header-offset {
    max-width: 600px;
    margin-left: 100px;
    margin-bottom: 80px;
}

.solution-header-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.solution-header-offset p {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
}

.products-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #ecf0f1;
}

.product-card h4 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.product-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 15px;
    color: #666;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 15px 20px;
}

.cta-select {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-select:hover {
    background: #2980b9;
}

.card-large-top {
    width: calc(45% - 20px);
    transform: rotate(-1deg);
}

.card-small-offset {
    width: calc(30% - 20px);
    transform: translateY(40px);
}

.card-medium-right {
    width: calc(35% - 20px);
    transform: rotate(1deg);
}

.card-wide-bottom {
    width: calc(50% - 20px);
    transform: translateY(-30px);
}

.card-offset-center {
    width: calc(38% - 20px);
    transform: translateY(20px);
}

.card-corner-placement {
    width: calc(32% - 20px);
}

.trust-building-offset {
    padding: 100px 80px;
    background: linear-gradient(135deg, #a8e6cf 0%, #78e08f 100%);
}

.trust-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-irregular h3 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    max-width: 600px;
}

.testimonial-left {
    align-self: flex-start;
    margin-left: 50px;
    transform: rotate(-1deg);
}

.testimonial-right-offset {
    align-self: flex-end;
    margin-right: 80px;
    transform: rotate(1deg);
}

.testimonial-bottom-shifted {
    align-self: center;
    margin-left: 150px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #34495e;
}

.testimonial cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section-asymmetric {
    padding: 100px 60px;
    background: #34495e;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 15%;
    background: #ffffff;
    padding: 60px;
    border-radius: 15px;
    transform: rotate(-1deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container-offset p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

.order-form-irregular {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #c0392b;
}

.references-section {
    padding: 80px 60px;
    background: #f8f9fa;
}

.references-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.reference-list {
    max-width: 900px;
    line-height: 1.8;
}

.reference-list li {
    margin-bottom: 15px;
    font-size: 15px;
}

.reference-list a {
    color: #3498db;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content-irregular {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.footer-section h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-top: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
    max-width: 1000px;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-copyright p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #7f8c8d;
    color: #ffffff;
}

.page-hero-offset {
    padding: 100px 60px 80px 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 22px;
    opacity: 0.9;
}

.page-hero-image {
    margin-top: 40px;
    max-width: 900px;
    transform: rotate(-1deg);
    background: #34495e;
}

.page-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-content-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
}

.about-block-left {
    flex: 1;
    max-width: 600px;
}

.about-block-left h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-block-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.about-visual-overlap {
    flex: 1;
    transform: translateY(-60px);
    background: #ecf0f1;
}

.about-visual-overlap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

.values-section-irregular {
    padding: 100px 60px;
    background: #f8f9fa;
}

.values-section-irregular h2 {
    font-size: 44px;
    margin-bottom: 70px;
    text-align: center;
    color: #2c3e50;
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.card-position-1 {
    width: calc(55% - 20px);
    transform: rotate(-1deg);
}

.card-position-2 {
    width: calc(40% - 20px);
    transform: translateY(30px);
}

.card-position-3 {
    width: calc(45% - 20px);
    transform: translateY(-20px);
}

.card-position-4 {
    width: calc(50% - 20px);
    transform: rotate(1deg);
}

.team-section-offset {
    padding: 100px 60px 100px 150px;
    background: #ffffff;
}

.team-content-irregular {
    max-width: 700px;
}

.team-content-irregular h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-content-irregular p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.commitment-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.commitment-block-asymmetric {
    max-width: 650px;
    margin-left: 20%;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    transform: rotate(-1deg);
}

.commitment-block-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
    font-weight: 700;
}

.services-intro-asymmetric {
    padding: 80px 60px 60px 120px;
    background: #f8f9fa;
}

.services-intro-content {
    max-width: 700px;
}

.services-intro-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.products-full-section {
    padding: 80px 60px;
    background: #ffffff;
}

.products-layout-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-card {
    display: flex;
    gap: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.product-detail-image {
    flex: 1;
    max-width: 450px;
    background: #ecf0f1;
}

.product-detail-image img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

.product-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-detail-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.product-specs {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.product-specs p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

.product-detail-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.product-detail-price {
    font-size: 34px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.card-layout-1 {
    transform: rotate(-1deg);
}

.card-layout-2 {
    transform: translateX(50px);
}

.card-layout-3 {
    transform: rotate(1deg);
}

.card-layout-4 {
    transform: translateX(-40px);
}

.card-layout-5 {
    transform: translateY(20px);
}

.card-layout-6 {
    transform: rotate(-1deg) translateX(30px);
}

.contact-content-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e74c3c;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-image-offset {
    flex: 1;
    transform: translateY(-40px) rotate(2deg);
    background: #ecf0f1;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

.contact-additional {
    padding: 80px 60px;
    background: #f8f9fa;
}

.contact-additional-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-additional-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background: linear-gradient(135deg, #a8e6cf 0%, #78e08f 100%);
}

.thanks-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.thanks-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-product {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary {
    background: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #3498db;
    color: #ffffff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.legal-page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    line-height: 1.8;
}

.legal-page-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.legal-page-content ul,
.legal-page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

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

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

@media (max-width: 1024px) {
    .hero-content-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-text-block {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .intro-offset,
    .story-flow,
    .problem-amplification,
    .about-content-asymmetric,
    .contact-content-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-side-visual,
    .story-block-right-overlap,
    .problem-visual-shifted,
    .about-visual-overlap,
    .contact-image-offset {
        margin-top: 40px;
        transform: none;
    }

    .products-grid-irregular .product-card {
        width: 100% !important;
        transform: none !important;
    }

    .product-detail-card {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
    }

    .nav-brand {
        font-size: 22px;
    }

    .hero-text-block h1 {
        font-size: 40px;
    }

    .form-container-offset {
        margin-left: 0;
        transform: none;
        padding: 40px 30px;
    }

    .footer-content-irregular {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}