/* 
Harmony Touch - Japanese Massage Blog
Main Stylesheet
*/

/* =========== Base Styles =========== */
:root {
    --primary-color: #E94B3C;
    --primary-dark: #D23B2C;
    --primary-light: #F16A5C;
    --secondary-color: #17A2B8;
    --secondary-dark: #0F7A8B;
    --secondary-light: #3CB8CC;
    --accent-color: #FFB82B;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #FFFFFF;
    --bg-off-white: #F8F9FA;
    --bg-gray: #EEEEEE;
    --border-color: #E1E1E1;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --error-color: #DC3545;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --container-width: 1200px;
    --header-height: 80px;
    --font-primary: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-secondary: 'Noto Serif JP', Georgia, 'Times New Roman', serif;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

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

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

/* =========== Container =========== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========== Buttons =========== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

/* Cookie consent buttons */
.cookie-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.cookie-btn.outline {
    background-color: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-medium);
}

.cookie-btn.outline:hover {
    background-color: var(--bg-gray);
}

/* =========== Header =========== */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
    height: var(--header-height);
}

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

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

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

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

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

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* =========== Hero Section =========== */
.hero {
    background-color: #152532;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 120px 0;
    margin-bottom: 80px;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(21, 37, 50, 0.8), rgba(21, 37, 50, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =========== Featured Posts Section =========== */
.featured-posts {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 40px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

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

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

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

.post-image {
    height: 220px;
    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-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.post-date {
    margin-right: 15px;
}

.post-category {
    color: var(--secondary-color);
}

.post-content h2, .post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-content p {
    margin-bottom: 15px;
    color: var(--text-medium);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: var(--primary-dark);
}

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

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

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* =========== Subscription Section =========== */
.subscription {
    background-color: var(--bg-off-white);
    padding: 80px 0;
    margin: 80px 0;
}

.subscription-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscription h2 {
    margin-bottom: 15px;
}

.subscription p {
    margin-bottom: 25px;
}

.subscription-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.subscription-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
}

.subscription-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.success-message {
    margin-top: 15px;
    padding: 10px;
    background-color: var(--success-color);
    color: white;
    border-radius: var(--border-radius);
    text-align: center;
}

/* =========== Footer =========== */
footer {
    background-color: #152532;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

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

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

.social-icons svg {
    width: 20px;
    height: 20px;
}

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

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* =========== Cookie Consent =========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-policy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

/* =========== Page Header =========== */
.page-header {
    background-color: #152532;
    /* background-image: url('images/page-header-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(21, 37, 50, 0.8), rgba(21, 37, 50, 0.9));
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* =========== Blog Page Styles =========== */
.blog-posts {
    padding: 0 0 80px;
}

.blog-posts .post-grid {
    grid-template-columns: 1fr;
}

.blog-posts .post-card {
    display: flex;
    flex-direction: row;
    max-height: 300px;
}

.blog-posts .post-image {
    width: 40%;
    height: 100%;
}

.blog-posts .post-content {
    width: 60%;
    padding: 25px;
}

/* =========== About Page Styles =========== */
.about-content {
    padding: 0 0 60px;
}

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

.our-values {
    margin-bottom: 80px;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.value-card {
    background-color: var(--bg-off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(233, 75, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
}

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

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

.team-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.team-card h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

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

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

.team-card .social-links {
    padding: 0 0 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card .social-links a {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--secondary-color);
    width: 35px;
    height: 35px;
}

.team-card .social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.certification-section {
    padding: 80px 0;
}

.certification-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.certification-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.credential-item {
    display: flex;
    align-items: center;
    background-color: var(--bg-off-white);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.credential-item:hover {
    box-shadow: var(--box-shadow);
}

.credential-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

.credential-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.credential-content p {
    margin-bottom: 0;
    color: var(--text-medium);
}

/* =========== Services Page Styles =========== */
.services-overview {
    padding: 0 0 60px;
}

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

.services-grid {
    padding: 0 0 80px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 40px;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background-color: rgba(23, 162, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

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

.service-features {
    margin: 20px 0 25px;
    list-style: none;
    padding: 0;
}

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

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

.testimonials {
    background-color: var(--bg-off-white);
    padding: 80px 0;
}

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

.testimonial-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-medium);
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 50px;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: -25px;
    left: -5px;
    font-family: Georgia, serif;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--text-light);
    padding-left: 0;
}

.testimonial-author p::before {
    display: none;
}

.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background-color: var(--bg-off-white);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--secondary-dark);
}

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

.cta-section {
    background-color: #152532;
    /* background-image: url('images/cta-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0;
    position: relative;
    text-align: center;
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(21, 37, 50, 0.8), rgba(21, 37, 50, 0.9));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========== Contact Page Styles =========== */
.contact-section {
    padding: 0 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-gap: 60px;
    margin-bottom: 80px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(23, 162, 184, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-content p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.contact-info .social-links {
    margin-top: 30px;
}

.contact-info .social-links h3 {
    margin-bottom: 15px;
}

.contact-info .social-icons {
    margin-top: 0;
}

.contact-info .social-icons a {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--secondary-color);
}

.contact-info .social-icons a:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

.contact-form, .issue-form, .newsletter-form {
    width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 0;
}

.newsletter-form .form-group input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.newsletter-form .form-group button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-content svg {
    color: var(--success-color);
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-content p {
    margin-bottom: 20px;
}

.report-issues, .email-subscription {
    background-color: var(--bg-off-white);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
}

.report-issues h2, .email-subscription h2 {
    margin-bottom: 15px;
}

.report-issues p, .email-subscription p {
    margin-bottom: 25px;
}

.map-section {
    margin-bottom: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* =========== Responsive Styles =========== */
@media screen and (max-width: 1200px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .services-grid .service-cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .blog-posts .post-card {
        flex-direction: column;
        max-height: none;
    }
    
    .blog-posts .post-image, 
    .blog-posts .post-content {
        width: 100%;
    }
    
    .blog-posts .post-image {
        height: 220px;
    }
    
    .contact-grid, 
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    header {
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 70%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 900;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0 0 15px;
    }
    
    .hero {
        padding: 80px 0;
        margin-bottom: 60px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .subscription-form input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .subscription-form button {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 15px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .page-header {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .credentials-grid, 
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .contact-form-container, 
    .report-issues, 
    .email-subscription {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .post-image {
        height: 180px;
    }
}
