:root {
    --primary-color: #1e88e5;
    --primary-light: #6ab7ff;
    --primary-dark: #005cb2;
    --secondary-color: #00acc1;
    --secondary-light: #5ddef4;
    --secondary-dark: #007c91;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #ffffff;
    --bg-light: #f5f9ff;
    --bg-dark: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-blue: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    --gradient-teal: linear-gradient(135deg, var(--secondary-light), var(--secondary-dark));
}

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

body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Header */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

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

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

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 60px;
    height: 60px;
}

/* Newsletter Section */
.newsletter {
    background: var(--gradient-teal);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.email-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Latest Blogs Section */
.latest-blogs {
    padding: 80px 0;
}

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

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--bg-color);
    transition: var(--transition);
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.25rem;
}

.blog-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.read-more {
    display: block;
    padding: 0 20px 20px;
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--bg-dark);
}

.footer-links h3,
.footer-policy h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-policy ul {
    list-style: none;
}

.footer-links li,
.footer-policy li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-policy a {
    color: var(--bg-dark);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-policy a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.footer-contact svg {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    color: var(--bg-dark);
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-link {
    display: block;
    margin-top: 10px;
    font-size: 0.875rem;
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-lighter);
}

/* Page Header */
.page-header {
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 60px;
}

.page-header h1 {
    margin-bottom: 10px;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 0.8;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-box,
.vision-box {
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: var(--bg-color);
}

.mission-box h2,
.vision-box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values {
    padding: 80px 0;
}

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

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    margin-bottom: 0;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
}

.member-social {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.member-social a {
    color: var(--text-lighter);
}

.member-social a:hover {
    color: var(--primary-color);
}

.cta {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-teal);
    color: white;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: var(--primary-dark);
}

.cta .btn:hover {
    background-color: var(--bg-light);
}

/* Blog Page */
.blog-intro {
    padding: 40px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-banner {
    padding: 60px 0;
    background-color: var(--bg-light);
    margin-bottom: 60px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    margin-bottom: 10px;
}

.blog-posts {
    padding: 80px 0;
}

.blog-posts .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-posts .blog-card {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .blog-posts .blog-card {
        flex-direction: row;
        align-items: center;
    }
    
    .blog-card .blog-image {
        flex: 0.4;
    }
    
    .blog-card .blog-content {
        flex: 0.6;
        padding: 30px;
    }
}

.blog-date {
    display: block;
    color: var(--text-lighter);
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.blog-categories {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-item {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--text-color);
    transition: var(--transition);
}

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

.category-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.category-icon svg {
    width: 48px;
    height: 48px;
}

.category-item h3 {
    margin-bottom: 10px;
}

.category-item p {
    color: var(--text-lighter);
    margin-bottom: 0;
}

/* Products Page */
.product-intro {
    padding: 80px 0;
}

.product-intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-intro-text {
    flex: 1;
}

.product-intro-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-benefits {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.products {
    padding: 80px 0;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.product-image {
    height: 300px;
    overflow: hidden;
}

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

.product-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    margin-bottom: 10px;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-desc {
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.product-card .btn {
    margin-top: auto;
}

.eco-friendly {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.eco-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.eco-text {
    flex: 1;
}

.eco-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.testimonials {
    padding: 80px 0;
}

.testimonial-slider {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author p {
    color: var(--text-light);
    font-style: normal;
    margin-bottom: 0;
}

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

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px 20px;
    display: none;
}

/* Contact Page */
.contact-intro {
    padding: 40px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    padding: 40px 0 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.info-icon {
    margin-right: 20px;
    color: var(--primary-color);
}

.info-text h3 {
    margin-bottom: 5px;
}

.info-details {
    color: var(--text-lighter);
    font-size: 0.875rem;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    margin-bottom: 20px;
}

.social-contact .social-icons {
    justify-content: flex-start;
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group:nth-last-child(2),
.form-group:nth-last-child(3) {
    grid-column: span 2;
}

.contact-form button {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.required {
    color: var(--error-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--bg-dark);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.map {
    padding: 40px 0 80px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Blog Post Pages */
.blog-post {
    padding: 80px 0;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-lighter);
    margin-bottom: 30px;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta svg {
    margin-right: 5px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin-bottom: 20px;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content ul,
.post-content ol {
    padding-left: 40px;
}

.post-share {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-dark);
}

.post-share h3 {
    margin-bottom: 20px;
}

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

.related-posts {
    padding: 80px 0;
    background-color: var(--bg-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .story-content,
    .about-content,
    .product-intro-content,
    .eco-content,
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .blog-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-last-child(2),
    .form-group:nth-last-child(3),
    .contact-form button {
        grid-column: span 1;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
}

@media (max-width: 576px) {
    .feature-grid,
    .benefits-grid,
    .values-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .email-form button {
        border-radius: var(--border-radius);
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
