/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF5E1;
    color: #1D3557;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #FFF5E1 0%, #AACFD0 100%);
    box-shadow: 0 5px 20px rgba(29, 53, 87, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1D3557;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    margin-left: 10px;
    color: #1D3557;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #1D3557;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #F25C54;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F25C54;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    color: white !important;
    padding: 12px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(242, 92, 84, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 92, 84, 0.4);
}

.cta-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1D3557;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 245, 225, 0.9) 0%, rgba(170, 207, 208, 0.9) 50%, rgba(242, 166, 90, 0.9) 100%), url('./img/gJP8bF.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23F25C54" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(-50px, -50px) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    color: #1D3557;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #1D3557;
    opacity: 0.9;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(242, 92, 84, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 92, 84, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1D3557;
    padding: 18px 40px;
    text-decoration: none;
    border: 2px solid #1D3557;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1D3557;
    color: white;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    font-weight: 700;
    color: #1D3557;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #1D3557;
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #FFF5E1 0%, rgba(170, 207, 208, 0.1) 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5em;
    color: #1D3557;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.2);
}

/* Services Section */
.services {
    background: #FFF5E1;
}

.services-tabs-container {
    position: relative;
}

/* Hide radio buttons */
.services-tabs-container input[type="radio"] {
    display: none;
}

.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    border: 2px solid #1D3557;
    color: #1D3557;
    padding: 15px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1em;
    display: inline-block;
}

.tab-button:hover {
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 92, 84, 0.3);
}

/* Active tab styling */
#tab-comptabilite:checked ~ .services-tabs label[for="tab-comptabilite"],
#tab-fiscalite:checked ~ .services-tabs label[for="tab-fiscalite"],
#tab-conseil:checked ~ .services-tabs label[for="tab-conseil"] {
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 92, 84, 0.3);
}

.tab-contents {
    position: relative;
}

.tab-content {
    display: none;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.1);
    margin: 0 auto;
    max-width: 900px;
    animation: fadeIn 0.5s ease;
}

/* Show active tab content */
#tab-comptabilite:checked ~ .tab-contents #comptabilite,
#tab-fiscalite:checked ~ .tab-contents #fiscalite,
#tab-conseil:checked ~ .tab-contents #conseil {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #FFF5E1, rgba(170, 207, 208, 0.2));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.service-item h4 {
    font-size: 1.3em;
    color: #1D3557;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #1D3557;
    opacity: 0.8;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, rgba(170, 207, 208, 0.1) 0%, #FFF5E1 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #F25C54, #F2A65A);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(29, 53, 87, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #AACFD0, #F2A65A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.advantage-card h3 {
    font-size: 1.4em;
    color: #1D3557;
    margin-bottom: 20px;
    font-weight: 600;
}

.advantage-card p {
    color: #1D3557;
    opacity: 0.8;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background: #FFF5E1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.15);
}

.quote-icon {
    font-size: 3em;
    color: #F25C54;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #1D3557;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #AACFD0, #F2A65A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2em;
}

.author-info h4 {
    color: #1D3557;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #1D3557;
    opacity: 0.7;
    font-size: 0.9em;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1D3557, #F25C54);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 50,100" fill="%23F2A65A" opacity="0.1"/></svg>') repeat;
    animation: slide 15s infinite linear;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: #1D3557;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: #F2A65A;
    color: white;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #FFF5E1 0%, rgba(170, 207, 208, 0.2) 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(29, 53, 87, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #F25C54, #F2A65A, #AACFD0);
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #AACFD0;
    border-radius: 15px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    background: #FFF5E1;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #F25C54;
    box-shadow: 0 0 0 3px rgba(242, 92, 84, 0.1);
    background: white;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #1D3557;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.85em;
    color: #F25C54;
    background: white;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95em;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #AACFD0;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    border-color: #F25C54;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 3px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label a {
    color: #F25C54;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 20px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    box-shadow: 0 8px 25px rgba(242, 92, 84, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 92, 84, 0.4);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(170, 207, 208, 0.1) 0%, #FFF5E1 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.1);
}

.contact-info h3 {
    font-size: 1.8em;
    color: #1D3557;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #FFF5E1;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(29, 53, 87, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1D3557;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: #1D3557;
    opacity: 0.8;
    text-decoration: none;
    line-height: 1.5;
}

.contact-details a:hover {
    color: #F25C54;
    opacity: 1;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.1);
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #AACFD0, #F2A65A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background: #1D3557;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #AACFD0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.8em;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #F2A65A;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info strong {
    color: #AACFD0;
}

.contact-info a {
    color: #F2A65A;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(170, 207, 208, 0.3);
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1D3557, #F25C54);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 1001;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #F2A65A;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.cookie-btn.accept {
    background: #F2A65A;
    color: white;
}

.cookie-btn.accept:hover {
    background: #F25C54;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: #1D3557;
}

/* Policy Pages */
.policy-page {
    background: #FFF5E1;
    padding: 120px 0 80px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.1);
}

.policy-content h1 {
    color: #1D3557;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.policy-content h2 {
    color: #F25C54;
    font-size: 1.8em;
    margin: 40px 0 20px;
    border-bottom: 2px solid #AACFD0;
    padding-bottom: 10px;
}

.policy-content h3 {
    color: #1D3557;
    font-size: 1.3em;
    margin: 30px 0 15px;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #1D3557;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #1D3557;
}

.policy-content strong {
    color: #F25C54;
}

.policy-content a {
    color: #F25C54;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thank You Page */
.thank-you-page {
    background: linear-gradient(135deg, #FFF5E1 0%, #AACFD0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.thank-you-content {
    max-width: 600px;
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(29, 53, 87, 0.15);
    position: relative;
    overflow: hidden;
}

.thank-you-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #F25C54, #F2A65A, #AACFD0);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F25C54, #F2A65A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 48px;
    animation: bounce 1s ease infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.thank-you-content h1 {
    color: #1D3557;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.2em;
    color: #1D3557;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.8em;
    }
    
    .section-title {
        font-size: 2.3em;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    

    
    .cta-section h2 {
        font-size: 2.2em;
    }
    
    .thank-you-content {
        padding: 40px 30px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.7em;
    }
    
    .advantage-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 25px;
        font-size: 1em;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-form-content h3 {
        font-size: 2em;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .thank-you-content h1 {
        font-size: 2em;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

/* Mobile overflow fixes */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .form-row {
        width: 100%;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        min-width: 0;
    }
    
    .cookie-content {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-list {
        flex-wrap: wrap;
    }
} 