:root {
    --color-primary: #1a365d;
    --color-primary-dark: #0f2440;
    --color-secondary: #c9a227;
    --color-accent: #e8b923;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f8fa;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

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

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

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

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

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

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

.nav-list a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

main {
    padding-top: 72px;
}

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

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

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

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    max-width: 550px;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.intro-block {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

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

.intro-text p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.services-preview {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.services-header h2 {
    font-size: 2rem;
    color: var(--color-primary);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

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

.service-card.featured {
    border-color: var(--color-secondary);
    position: relative;
}

.service-card.featured::before {
    content: 'Più richiesto';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 600;
    color: var(--color-secondary);
}

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

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

.process-section {
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 5rem 1.5rem;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
}

.process-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.process-intro {
    text-align: center;
    opacity: 0.9;
    margin-bottom: 3rem;
}

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

.step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    opacity: 0.85;
    font-size: 0.95rem;
}

.testimonials {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-secondary);
}

.testimonial p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.gallery-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.gallery-header h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.gallery-header p {
    color: var(--color-text-light);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item.large {
    flex: 2;
    min-width: 400px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item.large img {
    height: 350px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--color-bg);
    font-weight: 500;
}

.cta-section {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

.quote-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: normal;
}

.quote-form .btn {
    width: 100%;
}

.partners-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.partners-content {
    max-width: 900px;
    margin: 0 auto;
}

.partners-content h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.partners-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

.partner-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    opacity: 0.7;
}

.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-bg);
    padding: 4rem 1.5rem 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-secondary);
}

.footer-contact address {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--color-secondary);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: var(--color-bg);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-content a {
    color: var(--color-secondary);
}

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

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg);
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.about-story {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.values-header h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.values-header p {
    color: var(--color-text-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: var(--color-secondary);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.team-section {
    padding: 5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-intro h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.team-intro p {
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.team-stat {
    padding: 1.5rem 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    min-width: 150px;
}

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

.stat-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.certifications-section {
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 5rem 1.5rem;
}

.cert-content {
    max-width: 800px;
    margin: 0 auto;
}

.cert-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cert-content > p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cert-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.cert-list li {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.about-cta {
    padding: 5rem 1.5rem;
    text-align: center;
    background: var(--color-bg-alt);
}

.about-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-cta-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.services-intro {
    padding: 3rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.service-detail {
    padding: 5rem 1.5rem;
}

.service-detail.alt-bg {
    background: var(--color-bg-alt);
}

.service-detail-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1.5;
}

.service-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.service-detail-text h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-detail-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.service-pricing {
    background: var(--color-bg-alt);
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.service-detail.alt-bg .service-pricing {
    background: var(--color-bg);
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0.25rem 0;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.services-comparison {
    padding: 5rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-bg);
}

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

.comparison-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.comparison-header p {
    opacity: 0.9;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
}

.comparison-table th {
    background: rgba(255,255,255,0.1);
    font-weight: 600;
}

.comparison-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.services-cta-section {
    padding: 5rem 1.5rem;
    text-align: center;
    background: var(--color-bg-alt);
}

.services-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.services-cta-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-block p,
.info-block address {
    color: var(--color-text-light);
    line-height: 1.7;
}

.hours-table {
    width: 100%;
}

.hours-table td {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--color-text);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--color-bg);
}

.map-overlay p {
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-faq {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
}

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

.faq-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-secondary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 1.5rem;
    text-align: center;
}

.contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-cta-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #48bb78;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-service {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.thanks-service p {
    color: var(--color-text);
}

.thanks-next {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.next-steps {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

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

.legal-page {
    padding: 4rem 1.5rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 1.5rem 0 0.5rem;
}

.legal-section p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.7;
}

.legal-section address {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin: 1rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-primary);
}

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

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

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 100%;
    }

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

    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-list a {
        display: block;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .gallery-item.large {
        min-width: 100%;
    }
}

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

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

    .service-card {
        min-width: 100%;
    }

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

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

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

    .team-stats {
        flex-direction: column;
        align-items: center;
    }

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

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}
