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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #2c2c2c;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --footer-bg: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #c49563;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.hero-minimal {
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 0 40px 60px;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-image-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-statement {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.statement-content h2 {
    font-size: 38px;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.statement-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.value-proposition {
    background-color: var(--light-bg);
    padding: 100px 40px;
}

.vp-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.vp-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.vp-item:hover {
    transform: translateY(-4px);
}

.vp-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.vp-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 24px 24px 12px;
    font-weight: 600;
}

.vp-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0 24px 24px;
}

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 300;
}

.services-list-home {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 40px 32px;
    background-color: var(--light-bg);
    border-radius: 6px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: var(--secondary-color);
}

.contact-form-section {
    background-color: var(--light-bg);
    padding: 100px 40px;
    margin-top: 100px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 400;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--white);
    padding: 48px;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-bologna {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 400;
}

.why-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.disclaimer-section {
    background-color: #fef9f5;
    padding: 60px 40px;
    margin-top: 100px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.page-header {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 400;
}

.header-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
}

.about-intro {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.about-content-wide p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.mission-vision {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.mv-block {
    display: flex;
    gap: 80px;
    align-items: center;
}

.mv-block img {
    flex: 1;
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.mv-text {
    flex: 1;
}

.mv-text h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.mv-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    background-color: var(--light-bg);
    padding: 100px 40px;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 400;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background-color: var(--white);
    padding: 36px 28px;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.approach-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 400;
}

.approach-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.approach-list {
    list-style: none;
    margin: 20px 0;
}

.approach-list li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.approach-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.approach-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-intro {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.team-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 400;
}

.team-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.cta-about {
    background-color: var(--light-bg);
    padding: 80px 40px;
    text-align: center;
    margin-top: 100px;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 400;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.service-detail-block {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-tagline {
    font-size: 17px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-style: italic;
}

.service-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-includes {
    margin: 28px 0;
}

.service-includes h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
}

.service-includes ul li {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-pricing {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-page-content {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-additional-info {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.info-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 400;
}

.info-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.map-placeholder {
    background-color: var(--light-bg);
    padding: 80px 40px;
}

.map-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.map-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.map-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.thanks-page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-message {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 500;
}

.service-confirmation {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
    font-style: italic;
}

.thanks-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 400;
}

.last-update {
    font-size: 14px;
    color: #999;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .vp-grid,
    .services-list-home {
        gap: 40px;
    }

    .why-bologna,
    .mv-block,
    .approach-content,
    .service-detail-block,
    .contact-page-content,
    .thanks-page {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 24px;
    }

    .ad-disclosure {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-minimal {
        padding: 0 20px 40px;
        margin-top: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .statement-content h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .values-section h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}