/* 
 * Cabinet Comptable Paris
 * Styles principaux
 * Palette de couleurs:
 * - Primaire: #3F51B5 (ультрамариновый)
 * - Accent1: #FF6F61 (неоново-коралловый)
 * - Accent2: #A3E635 (лаймово-зеленый)
 * - Fond: #FFFFFF, #F5F5F5
 * - Texte: #2E2E2E
 */

/* ========== RESET & BASE ========== */
:root {
    --color-primary: #3F51B5;
    --color-primary-dark: #303F9F;
    --color-accent1: #FF6F61;
    --color-accent2: #A3E635;
    --color-bg-light: #FFFFFF;
    --color-bg-grey: #F5F5F5;
    --color-text: #2E2E2E;
    --color-text-light: #6E6E6E;
    --color-border: #E0E0E0;
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-headings: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

h1 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background-color: var(--color-accent1);
    border-radius: 2px;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.tagline {
    font-size: 2rem;
    color: var(--color-text-light);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1.6rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-nav {
    background-color: var(--color-accent1);
    color: white;
    padding: 0.8rem 1.5rem;
}

.btn-nav:hover {
    background-color: #ff5a4b;
    color: white;
}

.btn-cookie {
    background-color: var(--color-accent2);
    color: var(--color-text);
    font-weight: 600;
    padding: 0.8rem 1.6rem;
}

.btn-cookie:hover {
    background-color: #93d026;
    color: var(--color-text);
}

/* ========== HEADER ========== */
.site-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-link:hover {
    color: var(--color-primary);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent1);
    transition: var(--transition);
}

.nav-menu a:not(.btn):hover:after {
    width: 100%;
}

.nav-menu a:not(.btn):hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
}

.menu-icon {
    display: block;
    position: relative;
    width: 2.5rem;
    height: 0.2rem;
    background-color: var(--color-text);
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-text);
    transition: var(--transition);
}

.menu-icon::before {
    transform: translateY(-0.8rem);
}

.menu-icon::after {
    transform: translateY(0.8rem);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-more {
    color: var(--color-text-light);
    font-size: 1.4rem;
    text-decoration: underline;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.9), rgba(63, 81, 181, 0.7)), url('../img/HJCvwi.jpg') no-repeat center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero .tagline {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.logo {
    margin: 0 auto 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 8rem 0;
    background-color: var(--color-bg-light);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about__image:hover {
    transform: scale(1.02);
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 8rem 0;
    background-color: var(--color-bg-grey);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-accent1);
}

.service-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-grey);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 5rem;
    height: 5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-icon--basic::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233F51B5'%3E%3Cpath d='M21 8h-3V3H6v5H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1zM8 5h8v3H8V5zm11 10a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3z'/%3E%3C/svg%3E");
}

.service-icon--business::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233F51B5'%3E%3Cpath d='M21 11h-3V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v7H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1zM8 5h8v6H8V5zm2 12H4v-4h6v4zm10 0h-6v-4h6v4z'/%3E%3C/svg%3E");
}

.service-icon--premium::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233F51B5'%3E%3Cpath d='M21.5 6.5C21.5 5.1 20.4 4 19 4c-.9 0-1.7.5-2.2 1.2C16.3 4.5 15.4 4 14.5 4c-1.9 0-3.5 1.6-3.5 3.5 0 2.7 5 6.5 5 6.5s5-3.8 5-6.5zM12 14.5s-5.5-4.2-5.5-7c0-1.9 1.6-3.5 3.5-3.5.7 0 1.4.2 2 .7.6-.5 1.3-.7 2-.7 1.9 0 3.5 1.6 3.5 3.5 0 2.8-5.5 7-5.5 7zm8 3.5H4V6H2v14h18v-2z'/%3E%3C/svg%3E");
}

.service-card h3 {
    margin-top: 0;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: 8rem 0;
    background-color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.advantage {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background-color: rgba(63, 81, 181, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    width: 4rem;
    height: 4rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.advantage-icon--expertise::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6F61'%3E%3Cpath d='M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1 14h2v2h-2v-2zm0-10h2v8h-2V6z'/%3E%3C/svg%3E");
}

.advantage-icon--personalized::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6F61'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.advantage-icon--technology::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6F61'%3E%3Cpath d='M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z'/%3E%3C/svg%3E");
}

.advantage-icon--support::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6F61'%3E%3Cpath d='M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z'/%3E%3C/svg%3E");
}

.advantage h3 {
    color: var(--color-primary);
    font-size: 2rem;
}

.advantage p {
    color: var(--color-text-light);
}

/* ========== PROCESS SECTION ========== */
.process {
    padding: 8rem 0;
    background-color: var(--color-bg-grey);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.step {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    background-color: var(--color-accent1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    z-index: 2;
}

.step-image {
    margin: 1rem auto 2rem;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.step:hover .step-image img {
    transform: scale(1.05);
}

.step h3 {
    margin-top: 0;
    color: var(--color-primary);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 8rem 0;
    background-color: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial {
    background-color: var(--color-bg-grey);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 2rem;
    margin-bottom: 0;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: var(--color-accent1);
    line-height: 1;
    opacity: 0.3;
}

.testimonial-content p::before {
    top: -0.5rem;
    left: 0;
}

.testimonial-content p::after {
    bottom: -2rem;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.testimonial-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
}

.testimonial-info p {
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 1.4rem;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 8rem 0;
    background-color: var(--color-bg-grey);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    padding: 3rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--border-radius);
}

.contact-info h3 {
    color: white;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-family: var(--font-main);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--color-text-light);
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: #1a237e;
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 4rem;
    height: 0.2rem;
    background-color: var(--color-accent1);
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--color-accent1);
    padding-left: 0.5rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    font-size: 1.4rem;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
    padding: 8rem 0;
    background-color: var(--color-bg-grey);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
}

.last-update {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 3rem;
    text-align: right;
    font-size: 1.4rem;
}

.legal-content h2 {
    text-align: left;
    margin-top: 4rem;
    font-size: 2.4rem;
    color: var(--color-primary);
}

.legal-content h2::after {
    left: 0;
    transform: none;
    width: 4rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.legal-content ul li {
    margin-bottom: 1rem;
}

address {
    font-style: normal;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--color-bg-grey);
    border-radius: var(--border-radius);
}

/* ========== THANK YOU PAGE ========== */
.thank-you {
    padding: 10rem 0;
    text-align: center;
    background-color: var(--color-bg-grey);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you__content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.thank-you__icon {
    margin: 0 auto 3rem;
    animation: scaleIn 0.5s ease;
}

.thank-you__message {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 2rem;
}

.thank-you__actions {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========== UTILITY ========== */
.icon-location, .icon-phone, .icon-email {
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6F61'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6F61'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
}

.icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6F61'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 992px) {
    html {
        font-size: 56.25%; /* 9px */
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%; /* 8px */
    }

    .about__content {
        grid-template-columns: 1fr;
    }

    .about__text {
        order: 2;
    }

    .about__image {
        order: 1;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 8rem;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 2rem;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        visibility: hidden;
    }

    .nav-menu.toggled {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle.toggled .menu-icon {
        background-color: transparent;
    }

    .menu-toggle.toggled .menu-icon::before {
        transform: rotate(45deg);
    }

    .menu-toggle.toggled .menu-icon::after {
        transform: rotate(-45deg);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 3.6rem;
    }

    h2 {
        font-size: 3rem;
    }

    .hero {
        padding: 6rem 0;
    }

    .section {
        padding: 6rem 0;
    }
    
    .step-image {
        height: 150px;
    }
} 