/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Manga-style elements */
.manga-bubble {
    background: #fff;
    border: 3px solid #000;
    border-radius: 50px 50px 50px 10px;
    padding: 20px 30px;
    position: relative;
    display: inline-block;
    box-shadow: 5px 5px 0px #000;
    transform: rotate(-2deg);
    z-index: 2;
}

.manga-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #000;
    transform: rotate(15deg);
}

.manga-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 13px solid #fff;
    transform: rotate(15deg);
    z-index: 1;
}

.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, #000 41%, #000 42%, transparent 43%),
        linear-gradient(-45deg, transparent 40%, #000 41%, #000 42%, transparent 43%),
        linear-gradient(90deg, transparent 45%, #000 46%, #000 47%, transparent 48%);
    background-size: 20px 20px, 25px 25px, 30px 30px;
    opacity: 0.1;
    animation: speedLines 2s linear infinite;
}

.speed-lines.horizontal {
    background-image: 
        linear-gradient(0deg, transparent 45%, #000 46%, #000 47%, transparent 48%),
        linear-gradient(0deg, transparent 40%, #000 41%, #000 42%, transparent 43%);
    background-size: 100% 15px, 100% 25px;
}

.speed-lines.diagonal {
    background-image: 
        linear-gradient(45deg, transparent 40%, #000 41%, #000 42%, transparent 43%),
        linear-gradient(-45deg, transparent 40%, #000 41%, #000 42%, transparent 43%);
    background-size: 30px 30px, 40px 40px;
}

@keyframes speedLines {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.impact-star {
    position: absolute;
    font-size: 2rem;
    color: #000;
    font-weight: bold;
    animation: starPulse 1.5s ease-in-out infinite;
    text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.sound-effect {
    position: absolute;
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-shadow: 
        2px 2px 0px #fff,
        -2px -2px 0px #fff,
        2px -2px 0px #fff,
        -2px 2px 0px #fff,
        3px 3px 0px #000;
    animation: soundEffect 2s ease-in-out infinite;
    z-index: 3;
}

.sound-effect.big {
    font-size: 2.5rem;
}

@keyframes soundEffect {
    0%, 100% { transform: scale(1) rotate(-5deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #000;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 2rem;
    color: #000;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn-accept:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.btn-decline:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 3px solid #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    border-color: #000;
    background: #f8f8f8;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.8);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.manga-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.manga-effects .speed-lines {
    opacity: 0.05;
}

.manga-effects .impact-star {
    top: 20%;
    right: 10%;
    font-size: 3rem;
}

.manga-effects .sound-effect {
    top: 30%;
    left: 5%;
    font-size: 2rem;
    transform: rotate(-15deg);
}

.main-bubble {
    margin-bottom: 30px;
    transform: rotate(-1deg);
}

.main-bubble h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #fff;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.hero-description {
    max-width: 800px;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border: 2px solid #000;
    border-radius: 20px;
    box-shadow: 5px 5px 0px #000;
}

.hero-description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    border: 3px solid #000;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px #333;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 8px 8px 0px #333;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 3px 3px 0px #333;
}

.cta-button i {
    font-size: 1.5rem;
    animation: lightning 2s ease-in-out infinite;
}

@keyframes lightning {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-bubble {
    display: block;
    margin: 0 auto 30px;
    max-width: fit-content;
    transform: rotate(1deg);
}

.section-bubble h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 0px #fff;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8f8f8 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f8f8 25%, transparent 25%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 8px 8px 0px #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 12px 12px 0px #000;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(0,0,0,0.02) 41%, rgba(0,0,0,0.02) 42%, transparent 43%);
    background-size: 20px 20px;
    animation: cardPattern 10s linear infinite;
    pointer-events: none;
}

@keyframes cardPattern {
    0% { transform: translateX(-100px) translateY(-100px); }
    100% { transform: translateX(100px) translateY(100px); }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 5px 5px 0px #333;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.service-card p {
    font-size: 1rem;  
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.about-image {
    position: relative;
    border: 3px solid #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 8px 8px 0px #000;
}

.about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.95);
}

.manga-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #fff;
    border: 2px solid #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 2px 2px 0px #000;
    transform: rotate(-3deg);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-block {
    background: rgba(248, 248, 248, 0.8);
    border: 2px solid #000;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 3px 3px 0px #000;
}

.text-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.text-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.impact-effects {
    position: absolute;
    top: 10%;
    right: 5%;
    pointer-events: none;
}

.impact-effects .sound-effect {
    position: relative;
    top: 0;
    left: 0;
    font-size: 2rem;
    margin-bottom: 20px;
}

.impact-effects .impact-star {
    position: relative;
    font-size: 2.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f8f8;
    position: relative;
}

.speech-bubble-effects {
    position: absolute;
    top: 15%;
    right: 10%;
    pointer-events: none;
}

.speech-bubble {
    background: #fff;
    border: 2px solid #000;
    border-radius: 20px 20px 20px 5px;
    padding: 10px 20px;
    margin-bottom: 15px;
    box-shadow: 3px 3px 0px #000;
    font-weight: bold;
    position: relative;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.speech-bubble:nth-child(2) {
    animation-delay: 1s;
    margin-left: 20px;
}

.speech-bubble:nth-child(3) {
    animation-delay: 2s;
    margin-left: 40px;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 8px 8px 0px #000;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 12px 12px 0px #000;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #000;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 3px 3px 0px #000;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: #000;
    font-size: 1.2rem;
}

.testimonial-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f8f8;
    border-left: 5px solid #000;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: #000;
    font-family: 'Creepster', cursive;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.action-lines {
    position: absolute;
    top: 10%;
    left: 5%;
    pointer-events: none;
}

.action-lines .speed-lines {
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.action-lines .sound-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block {
    background: #f8f8f8;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 3px 3px 0px #000;
    position: relative;
}

.info-block h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

/* Order Form */
.order-form-container {
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 0px #000;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.form-bubble {
    transform: rotate(0deg);
}

.form-bubble h3 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
}

.form-effects {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.form-effects .impact-star {
    position: relative;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-effects .sound-effect {
    position: relative;
    font-size: 1.5rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #000;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 3px 3px 0px #000;
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: #000;
    color: #fff;
    border: 3px solid #000;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 8px 8px 0px #666;
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 3px 3px 0px #333;
}

.submit-btn i {
    font-size: 1.5rem;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(10px) rotate(15deg); }
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 41%, rgba(255,255,255,0.05) 42%, transparent 43%);
    background-size: 30px 30px;
    animation: footerPattern 20s linear infinite;
    pointer-events: none;
}

@keyframes footerPattern {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.footer-section ul li a:hover {
    color: #fff;
    border-bottom-color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 2px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    position: relative;
    z-index: 2;
}

/* Responsive Design */

/* Tablets and small desktops (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .main-bubble h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        max-width: 90%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .about-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile devices (320px - 768px) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.2);
        border-top: 3px solid #000;
        padding: 20px 0;
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 15px;
        display: block;
        margin: 0;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-bubble h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-bubble h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        padding: 20px;
        max-width: 100%;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-image img {
        height: 150px;
    }
    
    .text-block {
        padding: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-form-container {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Manga effects positioning for mobile */
    .manga-effects .impact-star {
        top: 10%;
        right: 5%;
        font-size: 2rem;
    }
    
    .manga-effects .sound-effect {
        top: 20%;
        left: 5%;
        font-size: 1.5rem;
    }
    
    .impact-effects {
        display: none; /* Hide on mobile for better performance */
    }
    
    .speech-bubble-effects {
        display: none; /* Hide on mobile for better performance */
    }
    
    .action-lines {
        display: none; /* Hide on mobile for better performance */
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .main-bubble h1 {
        font-size: 1.8rem;
    }
    
    .section-bubble h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .order-form-container {
        padding: 25px 15px;
    }
    
    .text-block {
        padding: 15px;
    }
}

/* Large screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .main-bubble h1 {
        font-size: 3.5rem;
    }
    
    .section-bubble h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smooth scrolling for all anchor links */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .cookie-notice,
    .nav-toggle,
    .manga-effects,
    .impact-effects,
    .speech-bubble-effects,
    .action-lines {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .manga-bubble,
    .service-card,
    .testimonial-card,
    .order-form-container,
    .text-block,
    .info-block {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-background::after {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .speed-lines {
        opacity: 0.2;
    }
    
    .service-card::before {
        display: none;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .speed-lines {
        animation: none;
    }
    
    .impact-star,
    .sound-effect,
    .speech-bubble {
        animation: none;
    }
} 