/* Basic Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables */
:root {
    --primary-color: #00a8cc;
    --secondary-color: #5eeb5b;
    --accent-color: #0e6ba8;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --header-height: 80px;
    --section-padding: 60px 0;
    --container-width: 1200px;
    --card-border-radius: 10px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-family: 'Noto Sans JP', sans-serif;
}

/* Typography */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

p {
    margin-bottom: 20px;
    color: var(--light-text);
}

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

a:hover {
    color: var(--accent-color);
}

/* Layout */
.container {
    max-width: var(--container-width);
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: var(--section-padding);
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

header h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

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

nav li {
    margin-left: 30px;
}

nav a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

nav a svg {
    margin-right: 5px;
}

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

nav a:hover::after, nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4f1fe 100%);
    padding: 80px 5%;
    margin-bottom: 40px;
}

.hero-content {
    width: 50%;
    padding-right: 30px;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(0, 168, 204, 0.3);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 12px rgba(0, 168, 204, 0.4);
}

/* Features Section */
.features {
    background: var(--white);
    padding: 60px 5%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.feature-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

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

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Editor Note Section */
.editor-note {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 60px 5%;
    margin: 40px 0;
}

.editor-note h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 30px;
}

.editor-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

.editor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.editor-text {
    flex: 1;
}

.editor-signature {
    font-style: italic;
    text-align: right;
    font-weight: 600;
}

/* Latest Posts Section */
.latest-posts {
    padding: 60px 5%;
    background: var(--light-bg);
}

.latest-posts h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.posts-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.post-excerpt {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

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

.view-all {
    display: inline-block;
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Footer */
footer {
    background: #002233;
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contact {
    margin-bottom: 30px;
}

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

.footer-logo-img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.registration {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    flex: 1.5;
    min-width: 300px;
}

.footer-contact address {
    font-style: normal;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 34, 51, 0.95);
    color: var(--white);
    padding: 15px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    margin: 0;
    flex: 2;
    min-width: 300px;
    color: #ddd;
}

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

.cookie-button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-button.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-button.customize {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cookie-button.reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

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

.cookie-more-info {
    flex: 100%;
    font-size: 0.85rem;
    margin-top: 8px;
    text-align: right;
}

.cookie-more-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Ask Question Button */
.ask-question-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.ask-question-button button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 168, 204, 0.3);
    transition: var(--transition);
}

.ask-question-button button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 168, 204, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: modalOpen 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal h2 {
    margin-top: 10px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.2);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

.submit-button:hover {
    background: var(--accent-color);
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #00a8cc 0%, #0e6ba8 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 5%;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page */
.about-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 5% 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 5%;
    background: var(--light-bg);
}

.mission-box, .vision-box, .values-box {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    min-width: 300px;
    transition: var(--transition);
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission-box h3, .vision-box h3, .values-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mission-box h3::after, .vision-box h3::after, .values-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.values-box ul {
    list-style-position: inside;
    margin-top: 15px;
}

.values-box li {
    margin-bottom: 8px;
}

.team-section {
    padding: 60px 5%;
    text-align: center;
}

.team-section h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin: 15px 0 5px;
}

.team-member p {
    padding: 0 15px 20px;
    margin: 0;
}

.team-member p:first-of-type {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.milestones {
    background: var(--light-bg);
    padding: 60px 5%;
}

.milestones h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(120px + 15px);
    height: 100%;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-date {
    width: 120px;
    padding-right: 30px;
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-left: 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -36px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary-color);
    z-index: 1;
}

.timeline-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    margin: 0;
}

.eco-commitment {
    padding: 60px 5%;
}

.eco-commitment h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

.eco-image {
    flex: 1;
    min-width: 300px;
}

.eco-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.eco-text {
    flex: 1;
    min-width: 300px;
}

.eco-text ul {
    list-style-position: inside;
    margin: 20px 0;
}

.eco-text li {
    margin-bottom: 10px;
}

/* Products Page */
.product-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 5% 60px;
}

.product-intro-content {
    flex: 1;
    min-width: 300px;
}

.product-intro-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-intro-image {
    flex: 1;
    min-width: 300px;
}

.product-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.product-lineup {
    background: var(--light-bg);
    padding: 60px 5%;
}

.product-lineup h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 25px;
}

.product-details h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.product-features {
    list-style-position: inside;
    margin-bottom: 20px;
}

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

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

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.buy-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.buy-button:hover {
    background: var(--accent-color);
    color: white;
}

.product-benefits {
    padding: 60px 5%;
    text-align: center;
}

.product-benefits h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.benefit {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.how-to-use {
    background: var(--light-bg);
    padding: 60px 5%;
}

.how-to-use h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.usage-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.usage-image {
    flex: 1;
    min-width: 300px;
}

.usage-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.usage-steps {
    flex: 1;
    min-width: 300px;
}

.step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
}

.testimonials {
    padding: 60px 5%;
}

.testimonials h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: rgba(0, 168, 204, 0.1);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info p {
    margin: 0;
}

.author-name {
    font-weight: 700;
}

.author-location {
    font-size: 0.9rem;
    color: var(--light-text);
}

.faq {
    background: var(--light-bg);
    padding: 60px 5%;
}

.faq h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question h4 {
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
}

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

.faq-answer p {
    margin: 0;
}

/* Blog Page */
.blog-editor-note {
    margin-top: 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.post-category {
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-categories {
    background: var(--light-bg);
    padding: 60px 5%;
    text-align: center;
    margin-top: 60px;
}

.blog-categories h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-tag {
    display: inline-block;
    padding: 8px 15px;
    background: var(--white);
    border-radius: 20px;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.category-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.blog-subscribe {
    padding: 60px 5%;
}

.subscribe-container {
    background: linear-gradient(135deg, #00a8cc 0%, #0e6ba8 100%);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 168, 204, 0.2);
}

.subscribe-content {
    flex: 1;
    min-width: 300px;
}

.subscribe-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.subscribe-form {
    flex: 1;
    min-width: 300px;
}

.form-input-group {
    display: flex;
    margin-bottom: 15px;
}

.form-input-group input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe-button {
    background: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-button:hover {
    background: #4cca49;
}

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

.form-checkbox input {
    width: 18px;
    height: 18px;
}

/* Contact Page */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 5% 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.info-icon {
    color: var(--primary-color);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin-bottom: 10px;
}

.info-content p {
    margin: 0;
}

.contact-form-container {
    flex: 1.5;
    min-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.full-width {
    flex: 100%;
}

.required {
    color: #e74c3c;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.privacy-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-consent input {
    width: auto;
    margin-right: 10px;
}

.form-submit {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.map-section {
    padding: 60px 5%;
    background: var(--light-bg);
}

.map-section h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    margin-bottom: 30px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.directions h4 {
    margin-bottom: 15px;
}

.directions ul {
    list-style-position: inside;
}

.directions li {
    margin-bottom: 10px;
}

.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.thank-you-modal .modal-content {
    text-align: center;
    padding: 40px;
}

.thank-you-icon {
    margin-bottom: 20px;
}

.modal-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.modal-button:hover {
    background: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 15px 5%;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 5px 15px;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .feature-container, .posts-container {
        flex-direction: column;
    }
    
    .editor-content {
        flex-direction: column;
        text-align: center;
    }
    
    .editor-signature {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .features h2, .latest-posts h2 {
        font-size: 1.8rem;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-date {
        width: auto;
        text-align: left;
        padding-left: 50px;
        margin-bottom: 10px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-content {
        margin-left: 50px;
    }
    
    .timeline-content::before {
        left: -36px;
    }
}
