/* CSS Variables for consistent theming */
:root {
    --primary: 214 100% 59%; /* #2563eb */
    --primary-dark: 214 100% 45%; /* #1d4ed8 */
    --secondary: 262 83% 58%; /* #7c3aed */
    --accent: 32 95% 44%; /* #d97706 */
    --success: 159 100% 39%; /* #10b981 */
    --warning: 43 96% 56%; /* #f59e0b */
    --danger: 0 84% 60%; /* #ef4444 */
    
    --background: 210 11% 98%; /* #f5f7fa */
    --surface: 0 0% 100%; /* #ffffff */
    --text: 220 13% 18%; /* #1e293b */
    --text-muted: 215 16% 47%; /* #64748b */
    --border: 214 13% 91%; /* #e2e8f0 */
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(var(--text));
    background-color: hsl(var(--background));
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: hsl(var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: hsl(var(--text));
}

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

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

/* Sections */
.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: hsl(var(--surface));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.section-header p {
    font-size: 1.2rem;
    color: hsl(var(--text-muted));
    max-width: 600px;
    margin: 0 auto;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: hsl(var(--surface));
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(var(--primary));
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: hsl(var(--text));
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: hsl(var(--text));
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--text));
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: hsl(var(--text-muted));
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Company Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background-color: hsl(var(--surface));
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.info-card p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.service-card p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: hsl(var(--primary));
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: hsl(var(--primary-dark));
}

.services-cta {
    text-align: center;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background-color: hsl(var(--primary));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.benefit-item p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: hsl(var(--surface));
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: hsl(var(--text));
    transition: var(--transition);
}

.faq-question:hover {
    background-color: hsl(var(--background));
}

.faq-icon {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text {
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.newsletter-text p {
    font-size: 1.1rem;
    color: hsl(var(--text-muted));
}

.newsletter-form {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: hsl(var(--text));
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.newsletter-consent {
    margin-bottom: 1.5rem;
}

.newsletter-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid hsl(var(--border));
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: hsl(var(--primary));
    font-weight: bold;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--text));
}

.contact-item p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

.contact-form {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.form-consent {
    margin-bottom: 1.5rem;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: hsl(var(--text));
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: hsl(var(--text-muted));
    transition: var(--transition);
}

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

.footer-section p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: hsl(var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: hsl(var(--primary-dark));
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--text-muted) / 0.3);
    color: hsl(var(--text-muted));
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    border-top: 2px solid hsl(var(--primary));
    padding: 1rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text));
}

.cookie-text p {
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: hsl(var(--surface));
    margin: 2rem;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--text-muted));
    transition: var(--transition);
}

.close:hover {
    color: hsl(var(--text));
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--border-radius);
}

.cookie-toggle {
    margin-bottom: 0.5rem;
}

.cookie-toggle label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

.slider {
    width: 50px;
    height: 24px;
    background-color: hsl(var(--border));
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: var(--transition);
}

input[type="checkbox"]:checked + .slider {
    background-color: hsl(var(--primary));
}

input[type="checkbox"]:checked + .slider::before {
    transform: translateX(26px);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Service Page Specific Styles */
.service-overview {
    margin-bottom: 3rem;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.overview-text p {
    font-size: 1.1rem;
    color: hsl(var(--text-muted));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--text));
    font-weight: 500;
}

.overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.methodology-grid,
.programs-grid,
.analytics-grid,
.strategic-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.methodology-step,
.program-card,
.analytics-card,
.strategic-service-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.methodology-step:hover,
.program-card:hover,
.analytics-card:hover,
.strategic-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-icon,
.program-icon,
.analytics-icon {
    margin-bottom: 1.5rem;
}

.methodology-step h3,
.program-card h3,
.analytics-card h3,
.strategic-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.methodology-step p,
.program-card p,
.analytics-card p,
.strategic-service-card p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features,
.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.program-features li,
.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
    color: hsl(var(--text-muted));
}

.program-features li:last-child,
.service-features li:last-child {
    border-bottom: none;
}

/* Case Study Styles */
.case-study,
.strategic-case-study {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.case-info h3 {
    color: hsl(var(--text));
    margin-bottom: 1.5rem;
}

.case-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.case-stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
    margin-top: 0.5rem;
}

.case-description h4 {
    color: hsl(var(--text));
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.case-description h4:first-child {
    margin-top: 0;
}

.case-description p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tools and Methods */
.tools-grid,
.methods-grid,
.tools-framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card,
.method-card {
    background-color: hsl(var(--surface));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid hsl(var(--primary));
    transition: var(--transition);
}

.tool-card:hover,
.method-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.tool-card h3,
.method-card h3 {
    color: hsl(var(--text));
    margin-bottom: 0.75rem;
}

.tool-card p,
.method-card p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

.method-icon {
    margin-bottom: 1rem;
}

/* Tools Categories */
.tools-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-category {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.tool-category h3 {
    color: hsl(var(--text));
    margin-bottom: 1.5rem;
    text-align: center;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-item {
    background-color: hsl(var(--background));
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid hsl(var(--primary));
    color: hsl(var(--text));
    font-weight: 500;
    transition: var(--transition);
}

.tool-item:hover {
    background-color: hsl(var(--primary) / 0.1);
    transform: translateX(2px);
}

/* Strategic Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: hsl(var(--primary));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.step-content h3 {
    color: hsl(var(--text));
    margin-bottom: 1rem;
}

.step-content p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.step-content li {
    color: hsl(var(--text));
    padding: 0.5rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

/* Framework Categories */
.framework-category {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.framework-category h3 {
    color: hsl(var(--text));
    margin-bottom: 1.5rem;
    text-align: center;
}

.framework-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.framework-item {
    padding: 1.5rem;
    background-color: hsl(var(--background));
    border-radius: var(--border-radius);
    border-left: 4px solid hsl(var(--primary));
}

.framework-item h4 {
    color: hsl(var(--text));
    margin-bottom: 0.75rem;
}

.framework-item p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Strategic Areas */
.strategic-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background-color: hsl(var(--surface));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid hsl(var(--primary));
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.area-card h3 {
    color: hsl(var(--text));
    margin-bottom: 0.75rem;
}

.area-card p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
}

/* Thank You Page */
.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h3 {
    color: hsl(var(--text));
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.quick-contact {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.quick-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.quick-contact-benefits h3 {
    color: hsl(var(--text));
    margin-bottom: 1.5rem;
}

.quick-contact-benefits ul {
    list-style: none;
}

.quick-contact-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: hsl(var(--text));
}

.cta-box {
    background-color: hsl(var(--background));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid hsl(var(--primary));
}

.cta-box h4 {
    color: hsl(var(--text));
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.cta-box p {
    color: hsl(var(--text-muted));
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: hsl(var(--surface));
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .newsletter-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .modal-content {
        margin: 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .services-grid,
    .info-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Service Pages Mobile */
    .overview-content,
    .case-content,
    .quick-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-details {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .step-content ul {
        grid-template-columns: 1fr;
    }

    .tools-framework-grid,
    .tools-categories {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2.5rem;
    color: hsl(var(--text));
    margin-bottom: 1rem;
}

.last-updated {
    color: hsl(var(--text-muted));
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border));
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    color: hsl(var(--primary));
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid hsl(var(--primary));
    padding-left: 1rem;
}

.privacy-section h3 {
    color: hsl(var(--text));
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
}

.privacy-section p {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: hsl(var(--text-muted));
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: hsl(var(--primary));
    text-decoration: underline;
}

.privacy-section a:hover {
    color: hsl(var(--primary-dark));
}
