/*
  RJ - Rassemblez et Jouez
  CSS for board game website
  Base color: #495180
*/

/* ===== BASE STYLES ===== */
:root {
    /* Monochromatic color scheme based on #495180 */
    --rj-primary: #495180;
    --rj-primary-light: #6a73a1;
    --rj-primary-lighter: #8b93b9;
    --rj-primary-dark: #363c60;
    --rj-primary-darker: #242840;
    --rj-bg-light: #f8f9fa;
    --rj-text: #333333;
    --rj-text-light: #666666;
    --rj-text-lighter: #888888;
    --rj-white: #ffffff;
    --rj-border: #e1e4e8;
    --rj-focus: rgba(73, 81, 128, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--rj-text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--rj-primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--rj-primary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: var(--rj-primary-dark);
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== CUSTOM FOCUS STATES ===== */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 3px solid var(--rj-focus);
    outline-offset: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-subscribe, .btn-cookie-accept, .btn-cookie-info {
    display: inline-block;
    background-color: var(--rj-primary);
    color: var(--rj-white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover, .btn-subscribe:hover, .btn-cookie-accept:hover {
    background-color: var(--rj-primary-dark);
    transform: translateY(-2px);
}

.btn-cookie-info {
    background-color: transparent;
    color: var(--rj-primary);
    border: 1px solid var(--rj-primary);
}

.btn-cookie-info:hover {
    background-color: var(--rj-bg-light);
}

/* ===== HEADER AND NAVIGATION ===== */
.main_menu {
    padding: 1rem 0;
    background-color: var(--rj-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.main_menu.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand {
    display: block;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--rj-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--rj-primary);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--rj-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--rj-primary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Mobile navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--rj-white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--rj-primary-lighter) 0%, var(--rj-primary) 100%);
    color: var(--rj-white);
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: var(--rj-white);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 5rem 0;
    background-color: var(--rj-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: var(--rj-bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 5rem 0;
    background-color: var(--rj-bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background-color: var(--rj-primary);
}

.timeline-item {
    margin-bottom: 2rem;
    display: flex;
    position: relative;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: var(--rj-primary);
    color: var(--rj-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background-color: var(--rj-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== GAMES SECTION ===== */
.games-section {
    padding: 5rem 0;
    background-color: var(--rj-white);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card h3, .game-card p {
    padding: 0 1.5rem;
}

.game-card h3 {
    margin-top: 1.5rem;
}

.game-card p {
    margin-bottom: 1.5rem;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 5rem 0;
    background-color: var(--rj-bg-light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--rj-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--rj-primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background-color: var(--rj-white);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-content div {
    flex: 1;
}

.cta-image img {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background-color: var(--rj-primary-dark);
    color: var(--rj-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-company-info h3, .footer-links h3, .footer-newsletter h3 {
    color: var(--rj-white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--rj-primary-lighter);
}

.footer-links a:hover {
    color: var(--rj-white);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px 0 0 8px;
}

.btn-subscribe {
    border-radius: 0 8px 8px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: var(--rj-primary-lighter);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--rj-white);
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content, .cta-content {
        flex-direction: column;
    }

    .hero-image {
        margin-top: 2rem;
        order: 1;
    }

    .hero-text {
        order: 2;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .features-grid, .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 1.5rem auto 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-text .btn-primary {
    animation: fadeIn 0.8s ease forwards;
}

.hero-text p {
    animation-delay: 0.2s;
}

.hero-text .btn-primary {
    animation-delay: 0.4s;
}

/* Clip-path content reveal animation */
.feature-card, .game-card, .timeline-content, .testimonial-item {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    animation: revealContent 0.8s ease forwards;
}

@keyframes revealContent {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Staggered animation for cards */
.feature-card:nth-child(1), .game-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2), .game-card:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3), .game-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Timeline item animation */
.timeline-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.8s;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--rj-primary) 0%, var(--rj-primary-dark) 100%);
    color: var(--rj-white);
    padding: 4rem 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--rj-white);
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
}

.contact-info {
    background-color: var(--rj-bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--rj-primary);
    margin-bottom: 0.5rem;
}

.info-item p {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background-color: var(--rj-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--rj-primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--rj-border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rj-primary);
    box-shadow: 0 0 0 3px var(--rj-focus);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 1rem;
}

/* Add special effects to inputs */
.form-group input:not(:placeholder-shown),
.form-group select:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--rj-primary-light);
}

/* Style for active nav link */
.nav-link.active {
    font-weight: 600;
    color: var(--rj-primary);
}

.nav-link.active:after {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--rj-bg-light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--rj-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--rj-primary);
}

/* Map Info Section */
.map-info-section {
    padding: 5rem 0;
    background-color: var(--rj-white);
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-info p {
    margin-bottom: 1.5rem;
}

/* Responsive styles for contact page */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem;
    }
}

/* Form animation effects */
.form-group input,
.form-group select,
.form-group textarea {
    transform: translateY(5px);
    opacity: 0;
    animation: formFieldAppear 0.5s ease forwards;
}

@keyframes formFieldAppear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group:nth-child(1) input { animation-delay: 0.1s; }
.form-group:nth-child(2) input { animation-delay: 0.2s; }
.form-group:nth-child(3) input { animation-delay: 0.3s; }
.form-group:nth-child(4) select { animation-delay: 0.4s; }
.form-group:nth-child(5) textarea { animation-delay: 0.5s; }
.form-submit button { animation-delay: 0.6s; }

/* Clip path animation for contact elements */
.contact-info, .contact-form-wrapper, .faq-item, .map-info {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    animation: revealContent 0.8s ease forwards;
}

.contact-form-wrapper {
    animation-delay: 0.2s;
}

.faq-item:nth-child(1) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.5s;
}

.map-info {
    animation-delay: 0.6s;
}

/* ===== THANK YOU PAGE STYLES ===== */

/* Thank You Section */
.thankyou-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rj-primary-lighter) 0%, var(--rj-primary) 100%);
    color: var(--rj-white);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.check-circle {
    width: 100px;
    height: 100px;
    background-color: var(--rj-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: scaleIn 0.5s ease-out forwards;
}

.check-mark {
    width: 40px;
    height: 70px;
    border-right: 8px solid var(--rj-primary);
    border-bottom: 8px solid var(--rj-primary);
    transform: rotate(45deg) translate(-10px, -15px);
    animation: checkmark 0.8s ease-in-out forwards;
    opacity: 0;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5) translate(-10px, -15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1) translate(-10px, -15px);
    }
}

.thankyou-content h1 {
    color: var(--rj-white);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

.thankyou-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.thankyou-content p:nth-child(3) {
    animation-delay: 0.7s;
}

.thankyou-content p:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thankyou-actions {
    margin-top: 2rem;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

/* Suggestions Section */
.suggestions-section {
    padding: 5rem 0;
    background-color: var(--rj-white);
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.suggestion-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.suggestion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suggestion-card:hover img {
    transform: scale(1.05);
}

.suggestion-card h3, .suggestion-card p {
    padding: 0 1.5rem;
}

.suggestion-card h3 {
    margin-top: 1.5rem;
}

.suggestion-card p {
    margin-bottom: 1.5rem;
}

/* ===== COOKIE BANNER STYLES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(36, 40, 64, 0.95); /* Dark primary color with opacity */
    color: var(--rj-white);
    padding: 0;
    z-index: 1100;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    backdrop-filter: blur(5px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    padding-right: 2rem;
    line-height: 1.5;
}

.btn-cookie {
    background-color: var(--rj-white);
    color: var(--rj-primary-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-cookie:hover {
    background-color: var(--rj-bg-light);
    transform: translateY(-2px);
}

.btn-cookie:active {
    transform: translateY(0);
}

/* Responsive styles for cookie banner and thank you page */
@media screen and (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .cookie-content p {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .check-circle {
        width: 80px;
        height: 80px;
    }

    .check-mark {
        width: 30px;
        height: 50px;
        border-right: 6px solid var(--rj-primary);
        border-bottom: 6px solid var(--rj-primary);
        transform: rotate(45deg) translate(-8px, -10px);
    }
}