:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --secondary: #64748b;
    --text: #1e293b;
    --text-light: #64748b;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #059669;
    --success-light: #d1fae5;
    --warning: #d97706;
    --error: #dc2626;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
}

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

.logo svg {
    flex-shrink: 0;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

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

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

.btn-secondary {
    background: var(--background);
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.page-hero {
    padding: 4rem 0;
    background: var(--primary-light);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.legal-hero {
    padding: 3rem 0;
}

.stats-section {
    padding: 3rem 0;
    background: var(--primary);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.overview-section {
    padding: 5rem 0;
}

.overview-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    margin-bottom: 1.5rem;
}

.overview-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: var(--radius);
}

.feature-item svg {
    flex-shrink: 0;
}

.services-highlight {
    padding: 5rem 0;
    background: var(--background-alt);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

.process-section {
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.testimonials-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    margin: 0;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar svg {
    width: 48px;
    height: 48px;
}

.author-info strong {
    display: block;
    color: var(--text);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.industries-section {
    padding: 5rem 0;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--background-alt);
    border-radius: var(--radius);
    font-weight: 500;
}

.philosophy-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.philosophy-content {
    display: flex;
    gap: 4rem;
}

.philosophy-text {
    flex: 1;
}

.philosophy-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.faq-section {
    padding: 5rem 0;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    margin: 0;
}

.tips-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.tips-grid {
    display: flex;
    gap: 2rem;
}

.tip-card {
    flex: 1;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.tip-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.tip-card h3 {
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    padding: 5rem 0;
    background: var(--primary);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.cta-content .btn-primary:hover {
    background: var(--primary-light);
}

.footer {
    background: var(--text);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.875rem;
    flex: 1;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--background);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0;
    line-height: 1;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.cookie-option-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border);
    border-radius: 26px;
    transition: var(--transition);
}

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

.cookie-toggle input:checked + .toggle-slider {
    background: var(--primary);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

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

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.cookie-modal-footer .btn {
    flex: 1;
}

.story-section {
    padding: 5rem 0;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-illustration {
    width: 100%;
    max-width: 300px;
}

.milestones-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.milestones-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.milestone {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-left: 2px solid var(--primary);
    margin-left: 1rem;
    padding-left: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 1.75rem;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
}

.milestone-year {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 60px;
}

.milestone-content h3 {
    margin-bottom: 0.5rem;
}

.milestone-content p {
    color: var(--text-light);
    margin: 0;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.member-avatar svg {
    width: 120px;
    height: 120px;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.values-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
}

.approach-section {
    padding: 5rem 0;
}

.approach-content h2 {
    margin-bottom: 1rem;
}

.approach-content > p {
    max-width: 700px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.approach-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-point {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
    background: var(--background-alt);
}

.approach-point h4 {
    margin-bottom: 0.5rem;
}

.approach-point p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.partners-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.partners-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-item {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

.partner-item svg {
    margin-bottom: 1rem;
}

.partner-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.partner-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.services-intro {
    padding: 3rem 0;
    background: var(--background-alt);
}

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

.services-intro-content p {
    color: var(--text-light);
}

.services-list {
    padding: 4rem 0;
}

.services-list.alt-bg {
    background: var(--background-alt);
}

.services-list h2 {
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-detail-card {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 300px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.services-list.alt-bg .service-detail-card {
    background: var(--background);
}

.service-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.service-icon-large {
    flex-shrink: 0;
}

.service-title-price h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.service-detail-card > p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.packages-section {
    padding: 5rem 0;
}

.packages-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.package-card {
    flex: 1;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 var(--radius-lg) 0 var(--radius);
}

.package-header {
    padding: 2rem;
    background: var(--background-alt);
    text-align: center;
}

.package-card.featured .package-header {
    background: var(--primary-light);
}

.package-header h3 {
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 0.875rem;
    color: var(--success);
}

.package-content {
    padding: 2rem;
}

.package-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.package-features svg {
    flex-shrink: 0;
}

.process-detail-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.process-detail-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-detail-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.process-detail-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.process-detail-step p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.comparison-section {
    padding: 5rem 0;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background: var(--text);
    color: white;
    font-weight: 600;
}

.comparison-row:not(.header):nth-child(even) {
    background: var(--background-alt);
}

.comparison-cell {
    flex: 1;
    padding: 1rem 1.5rem;
    text-align: center;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 500;
}

.comparison-cell.highlight {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
}

.comparison-row.header .comparison-cell.highlight {
    background: var(--primary);
    color: white;
}

.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

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

.contact-card {
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
}

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

.contact-card h3 {
    margin-bottom: 0.75rem;
}

.contact-address {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.contact-email a {
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
}

.hours-row span:first-child {
    color: var(--text-light);
}

.contact-details {
    flex: 1.5;
}

.about-office {
    margin-bottom: 3rem;
}

.about-office h2 {
    margin-bottom: 1rem;
}

.about-office p {
    color: var(--text-light);
}

.directions h3 {
    margin-bottom: 1.5rem;
}

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

.direction-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.direction-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.direction-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.company-info-section {
    padding: 4rem 0;
    background: var(--background-alt);
}

.company-info-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.company-info-card {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.company-info-card h4 {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.company-info-card p {
    font-weight: 600;
    margin: 0;
}

.company-description {
    max-width: 800px;
}

.company-description p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.krakow-office {
    padding: 4rem 0;
}

.office-alt-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.office-alt-text {
    flex: 1;
}

.office-alt-text h2 {
    margin-bottom: 1rem;
}

.office-alt-text > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.office-alt-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-row svg {
    flex-shrink: 0;
}

.office-alt-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.office-illustration {
    width: 100%;
    max-width: 200px;
}

.response-time {
    padding: 3rem 0;
    background: var(--primary-light);
}

.response-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.response-text h3 {
    margin-bottom: 0.5rem;
}

.response-text p {
    color: var(--text-light);
    margin: 0;
}

.thank-you-section {
    padding: 5rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thank-you-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item svg {
    flex-shrink: 0;
}

.detail-item span {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meanwhile-section {
    padding: 4rem 0;
    background: var(--background-alt);
}

.meanwhile-cards {
    display: flex;
    gap: 2rem;
}

.meanwhile-card {
    flex: 1;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.meanwhile-card h3 {
    margin-bottom: 1rem;
}

.meanwhile-card p {
    color: var(--text-light);
    margin: 0;
}

.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
}

.legal-text li {
    color: var(--text-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.cookies-table th {
    background: var(--background-alt);
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .services-cards,
    .testimonials-grid,
    .tips-grid,
    .packages-grid {
        flex-direction: column;
    }

    .overview-content,
    .philosophy-content,
    .story-content,
    .office-alt-content {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--background);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        display: none;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-link.active::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .service-detail-card {
        flex: 1 1 100%;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-cell {
        padding: 0.75rem;
    }

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

    .values-grid,
    .approach-points {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        width: 100%;
    }

    .thank-you-actions {
        flex-direction: column;
    }

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

    .step-number {
        margin: 0 auto;
    }

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

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