/* ======================================
   Table of Contents:
   
   1. Base Styles
   2. Typography
   3. Layout & Containers
   4. Navigation
   5. Header
   6. Hero Section
   7. Section Styles
   8. Cards & Boxes
   9. Forms
   10. Buttons
   11. Footer
   12. Cookie Consent
   13. Animations
   14. Utilities
   15. Media Queries
   ====================================== */

/* ======================================
   1. Base Styles
   ====================================== */
:root {
    
    --primary-color: #0A1A2F;
    --secondary-color: #D4AF37;
    --gold-accent: #FFD700;
    --dark-bg: #050A14;
    
    
    --text-light: #F8F9FA;
    --text-dark: #212529;
    
    
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --gold-foil-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 20%, #B38728 45%, #FBF5B7 70%, #AA771C 100%);
    
    
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    --gold-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    
    
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
    
    
    --section-spacing: 100px;
    --element-spacing: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======================================
   2. Typography
   ====================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.8rem;
    position: relative;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.gold-text {
    background: var(--gold-foil-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    text-shadow: none;
}

.text-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ======================================
   3. Layout & Containers
   ====================================== */
.container {
    max-width: 1200px;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 20px auto 30px;
    position: relative;
    border-radius: 2px;
}

.divider span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold-accent);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--gold-accent);
}

.row {
    margin-bottom: 30px;
}

.parallax-section {
    background-color: rgba(10, 26, 47, 0.7);
    background-blend-mode: overlay;
    position: relative;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
    z-index: -1;
}

/* ======================================
   4. Navigation
   ====================================== */
.navbar {
    padding: 20px 0;
    transition: var(--transition-fast);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    transition: var(--transition-fast);
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 1.5rem;
    color: var(--text-light);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(248, 249, 250, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 5px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

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

.navbar-collapse {
    transition: var(--transition-medium);
}

/* ======================================
   5. Header
   ====================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 10px 0;
    background-color: rgba(5, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
    padding: 5px 0;
    background-color: rgba(5, 10, 20, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .logo {
    height: 35px;
}

/* ======================================
   6. Hero Section
   ====================================== */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero-section {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.hero-image-container::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 15px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: var(--transition-medium);
}

/* ======================================
   7. Section Styles
   ====================================== */


.about-section {
    position: relative;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.7;
}

.about-content {
    padding: 20px 0;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px;
    background-color: rgba(10, 26, 47, 0.5);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gold-foil-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}


.services-section {
    background-color: rgba(5, 10, 20, 0.8);
}

.service-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover::before {
    height: 8px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
    box-shadow: var(--gold-shadow);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

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

.service-image {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
}


.why-choose-section {
    position: relative;
}

.advantage-card {
    background-color: rgba(10, 26, 47, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-fast);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(10, 26, 47, 0.9);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.advantage-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}


.case-studies-section {
    position: relative;
}

.case-study-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.case-study-image {
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-medium);
}

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

.case-study-content {
    padding: 30px;
}

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

.case-study-category {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.case-study-results {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.result-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--gold-foil-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.result-text {
    font-size: 0.85rem;
    opacity: 0.9;
}


.contact-form-section {
    position: relative;
    background-color: rgba(5, 10, 20, 0.9);
    padding: 80px 0;
}

.contact-form-content {
    padding: 30px 0;
}

.contact-info {
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    color: var(--primary-color);
}

.contact-form-container {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-form-container::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 15px;
    opacity: 0.5;
}


.trial-overview-section {
    position: relative;
}

.overview-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.overview-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.consultation-process-section {
    background-color: rgba(5, 10, 20, 0.8);
}

.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    width: 2px;
    background: var(--gold-gradient);
}

.process-item {
    position: relative;
    margin-bottom: 50px;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--gold-shadow);
}

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

.testimonials-section {
    position: relative;
}

.testimonial-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    padding: 20px 0;
    font-style: italic;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.testimonial-author p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.booking-section {
    position: relative;
}

.booking-form-container {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.booking-form-container::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 15px;
    opacity: 0.5;
}


.methodology-intro-section {
    position: relative;
}

.methodology-intro-content {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.methodology-section {
    padding: 100px 0;
    position: relative;
}

.methodology-section-alt {
    background-color: rgba(5, 10, 20, 0.8);
}

.methodology-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.methodology-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.7;
}

.methodology-content {
    padding: 20px 0;
}

.methodology-phases {
    margin-top: 40px;
}

.phase-item {
    margin-bottom: 30px;
}

.phase-item:last-child {
    margin-bottom: 0;
}

.phase-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.phase-item h3 span {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary-color);
    box-shadow: var(--gold-shadow);
}

.success-stories-section {
    position: relative;
}

.success-story-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.success-story-category {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.success-story-results {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.methodology-comparison-section {
    position: relative;
    padding-bottom: 80px;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(odd) td {
    background-color: rgba(10, 26, 47, 0.7);
}

.comparison-table tr:nth-child(even) td {
    background-color: rgba(10, 26, 47, 0.5);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-content {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 60px 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.cta-content::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 15px;
    opacity: 0.5;
}

.cta-content h2 {
    margin-bottom: 20px;
}

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


.team-intro-section {
    position: relative;
}

.team-intro-content {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.key-specialists-section {
    background-color: rgba(5, 10, 20, 0.8);
}

.specialist-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.specialist-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.specialist-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.specialist-expertise {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.95rem;
    font-style: italic;
}

.team-approach-section {
    position: relative;
}

.approach-card {
    background-color: rgba(10, 26, 47, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(10, 26, 47, 0.9);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--gold-shadow);
}

.approach-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.knowledge-resources-section {
    position: relative;
}

.resource-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.resource-image {
    position: relative;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-medium);
}

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

.resource-content {
    padding: 30px;
}

.resource-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

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


.contact-info-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-info-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-foil-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    box-shadow: var(--gold-shadow);
}

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

.contact-info-note {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 10px;
}

.map-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.map-container::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 15px;
    opacity: 0.5;
}

.visit-info-section {
    padding-top: 0;
}

.visit-info-content {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.visit-info-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.visit-info-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--secondary-color);
}

.visit-info-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.visit-info-content ul li {
    margin-bottom: 10px;
}

.visit-cta {
    margin-top: 30px;
    text-align: center;
}


.thank-you-section {
    padding: 180px 0 100px;
}

.thank-you-content {
    padding: 20px 0;
}

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

.thank-you-content .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.what-next {
    margin: 40px 0;
    background-color: rgba(10, 26, 47, 0.8);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.what-next h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.what-next ol {
    padding-left: 20px;
}

.what-next ol li {
    margin-bottom: 15px;
}

.thank-you-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.thank-you-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.thank-you-image::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.7;
}

.related-resources-section {
    padding-top: 0;
    padding-bottom: 100px;
}


.article-content {
    padding: 180px 0 100px;
}

.article-header {
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.article-author {
    font-weight: 600;
}

.article-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.article-body {
    margin-bottom: 60px;
}

.article-body h2 {
    font-size: 2.2rem;
    margin: 50px 0 20px;
}

.article-body h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body ul, 
.article-body ol {
    margin-bottom: 30px;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-footer {
    margin-top: 50px;
}

.article-cta {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.article-cta::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    z-index: -1;
    border-radius: 15px;
    opacity: 0.5;
}

.article-cta h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.article-cta p {
    margin-bottom: 25px;
    font-size: 1.2rem;
}


.legal-content-section {
    padding: 180px 0 100px;
}

.legal-content {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.legal-last-updated {
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 600;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-section ul, 
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-table-container {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.95rem;
}

.cookie-table th {
    background-color: rgba(10, 26, 47, 0.9);
    color: var(--secondary-color);
    font-weight: 700;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(odd) td {
    background-color: rgba(10, 26, 47, 0.7);
}

.cookie-table tr:nth-child(even) td {
    background-color: rgba(10, 26, 47, 0.5);
}

.cookie-settings-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(10, 26, 47, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-settings-cta h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cookie-settings-cta p {
    margin-bottom: 20px;
}

/* ======================================
   8. Cards & Boxes
   ====================================== */


/* ======================================
   9. Forms
   ====================================== */
.form-group {
    margin-bottom: 25px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    color: var(--text-light);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    color: var(--text-light);
}

.form-select {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    color: var(--text-light);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d4af37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    color: var(--text-light);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    padding-left: 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-check-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-check-label {
    font-size: 0.95rem;
    cursor: pointer;
}

.form-check-label a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.form-check-label a:hover {
    text-decoration: underline;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}

.iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.iti__country-list {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: rgba(212, 175, 55, 0.2);
}

.iti__country:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.iti__country.iti__active {
    background-color: rgba(212, 175, 55, 0.3);
}

.iti__country-name, 
.iti__dial-code {
    color: var(--text-light);
}

/* ======================================
   10. Buttons
   ====================================== */
.btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-gold {
    background: var(--gold-foil-gradient);
    border: none;
    color: var(--primary-color);
    box-shadow: var(--gold-shadow);
}

.btn-gold:hover, 
.btn-gold:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

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

.btn-outline-gold:hover, 
.btn-outline-gold:focus {
    background: var(--gold-foil-gradient);
    border-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
}

.btn-link {
    color: var(--secondary-color);
    padding: 0;
    text-decoration: none;
    background: transparent;
    border: none;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1rem;
}

.btn-link:hover, 
.btn-link:focus {
    color: var(--gold-accent);
    text-decoration: underline;
}

.btn-block {
    display: block;
    width: 100%;
}


.btn-gold.cookie-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.btn-outline.cookie-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline.cookie-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* ======================================
   11. Footer
   ====================================== */
.site-footer {
    background-color: var(--primary-color);
    padding: 80px 0 30px;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-info p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 1.5px;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright p, 
.address p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ======================================
   12. Cookie Consent
   ====================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-content {
    padding: 20px;
}

.cookie-header {
    margin-bottom: 20px;
}

.cookie-header h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cookie-header p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.btn-gold {
    background: var(--gold-foil-gradient);
    border: none;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

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

.cookie-modal-content {
    background-color: var(--primary-color);
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.cookie-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-close:hover {
    color: var(--secondary-color);
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cookie-category-header h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cookie-category-header p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-toggle {
    position: relative;
    margin-left: 20px;
    min-width: 50px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 50px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    transition: var(--transition-fast);
}

.cookie-toggle label:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.cookie-toggle input:checked + label {
    background-color: var(--secondary-color);
}

.cookie-toggle input:checked + label:after {
    left: calc(100% - 3px - 20px);
    background-color: var(--primary-color);
}

.cookie-toggle.disabled label {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: right;
}

/* ======================================
   13. Animations
   ====================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ======================================
   14. Utilities
   ====================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.rounded {
    border-radius: 10px !important;
}

.shadow-lg {
    box-shadow: var(--card-shadow) !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ======================================
   15. Media Queries
   ====================================== */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-spacing {
        --section-spacing: 80px;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-spacing {
        --section-spacing: 70px;
    }
    
    .navbar-collapse {
        background-color: rgba(5, 10, 20, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .nav-item {
        margin: 5px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .page-hero-section {
        padding: 140px 0 60px;
    }
    
    .about-image::before {
        top: 10px;
        left: -10px;
    }
    
    .methodology-image::before {
        top: -10px;
        right: -10px;
    }
    
    .thank-you-image::before {
        top: 10px;
        right: -10px;
    }
    
    .hero-image-container,
    .about-image,
    .methodology-image,
    .thank-you-image {
        margin-top: 40px;
    }
    
    .hero-buttons,
    .thank-you-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn,
    .thank-you-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-info,
    .footer-heading {
        margin-top: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-spacing {
        --section-spacing: 60px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-section {
        padding: 130px 0 60px;
    }
    
    .page-hero-section {
        padding: 120px 0 50px;
    }
    
    .about-stats,
    .case-study-results,
    .success-story-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-container,
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-number {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-spacing {
        --section-spacing: 50px;
    }
    
    .logo {
        height: 35px;
    }
    
    .hero-section {
        padding: 120px 0 50px;
    }
    
    .page-hero-section {
        padding: 110px 0 40px;
    }
    
    .service-card,
    .advantage-card,
    .overview-card,
    .specialist-card,
    .approach-card {
        padding: 20px;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 10px 10px 0 0;
    }
}