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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-overlay-text p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-overlay {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.cta-overlay:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.intro-visual {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.intro-image-block {
    flex: 1;
    overflow: hidden;
}

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

.intro-text-block {
    flex: 1;
    padding: 5rem 4rem;
    background: #f8f8f8;
}

.intro-text-block h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text-block p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.image-dominant-section {
    width: 100%;
    margin: 4rem 0;
}

.full-width-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: auto;
    filter: brightness(0.85);
}

.image-caption-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    color: white;
    max-width: 500px;
}

.image-caption-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.image-caption-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-visual {
    padding: 6rem 3rem;
    background: white;
}

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

.services-header-visual h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header-visual p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-image {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card-image:hover {
    transform: translateY(-5px);
}

.service-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #333;
}

.visual-divider {
    width: 100%;
    margin: 3rem 0;
}

.visual-divider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.approach-section {
    display: flex;
    min-height: 70vh;
    background: #f5f5f5;
}

.approach-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.approach-image {
    flex: 1;
    overflow: hidden;
}

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

.testimonial-visual {
    margin: 4rem 0;
}

.testimonial-overlay-bg {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.testimonial-overlay-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.testimonial-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.testimonial-content-overlay blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-content-overlay cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.cta-mid-visual {
    text-align: center;
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
}

.cta-mid-visual h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-mid-visual p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.portfolio-glimpse {
    padding: 4rem 3rem;
    background: white;
}

.portfolio-grid-visual {
    display: flex;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.booking-section {
    padding: 6rem 3rem;
    background: #f8f8f8;
}

.booking-form-visual {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-visual h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.booking-form-visual > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.visual-form {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit-visual {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.btn-submit-visual:hover {
    background: #333;
}

.final-visual-cta {
    margin: 4rem 0 0 0;
}

.final-cta-overlay {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.final-cta-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.final-cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.final-cta-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.cta-final-button:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.footer-minimal {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-content p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: white;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background: white;
    color: #1a1a1a;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.about-hero-visual,
.services-hero-visual,
.contact-hero-visual,
.thanks-hero-visual {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-top: 80px;
}

.about-intro {
    display: flex;
    min-height: 70vh;
}

.about-text-block {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-image-block {
    flex: 1;
    overflow: hidden;
}

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

.philosophy-visual {
    padding: 6rem 3rem;
    background: #f8f8f8;
    text-align: center;
}

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

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: #444;
}

.values-section {
    padding: 6rem 3rem;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f8f8;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.experience-visual {
    margin: 4rem 0;
}

.experience-image-overlay {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.experience-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.experience-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 2rem;
}

.experience-text-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-text-overlay p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.approach-details {
    padding: 6rem 3rem;
    background: white;
}

.approach-details h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.step-visual {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-visual h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-visual p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.cta-about {
    text-align: center;
    padding: 6rem 2rem;
    background: #f8f8f8;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.services-intro {
    padding: 4rem 3rem;
    background: white;
}

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

.services-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-intro-text p {
    font-size: 1.15rem;
    color: #555;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.service-detail-visual {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #444;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.additional-info {
    padding: 5rem 3rem;
    background: #f8f8f8;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.info-blocks {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 4px;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    min-height: 70vh;
    padding: 4rem 0;
}

.contact-info-visual {
    flex: 1;
    padding: 3rem 4rem;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-visual h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.contact-detail a {
    color: #1a1a1a;
    font-weight: 500;
}

.contact-image-visual {
    flex: 1;
    overflow: hidden;
}

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

.location-info {
    padding: 4rem 3rem;
    background: white;
    text-align: center;
}

.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-info p {
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-cta-visual {
    margin: 4rem 0 0 0;
}

.cta-overlay-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.cta-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.cta-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 2rem;
}

.cta-overlay-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.thanks-content {
    display: flex;
    min-height: 70vh;
    padding: 4rem 0;
}

.thanks-message {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    padding: 1.5rem;
    background: #f0f8f0;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.05rem;
    color: #1a1a1a;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #1a1a1a;
    color: white;
    opacity: 1;
}

.thanks-image {
    flex: 1;
    overflow: hidden;
}

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

.policy-page {
    padding: 8rem 3rem 6rem;
    background: white;
}

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

.policy-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-content ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.policy-content em {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .nav-floating {
        padding: 1rem 1.5rem;
    }

    .intro-visual,
    .approach-section,
    .about-intro,
    .contact-content,
    .thanks-content {
        flex-direction: column;
    }

    .service-cards-visual {
        gap: 1.5rem;
    }

    .service-card-image {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    .portfolio-grid-visual {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-overlay-text h1 {
        font-size: 2.5rem;
    }

    .hero-overlay-text p {
        font-size: 1.1rem;
    }

    .intro-text-block,
    .approach-content,
    .about-text-block {
        padding: 3rem 2rem;
    }

    .intro-text-block h2,
    .approach-content h2 {
        font-size: 2rem;
    }

    .services-header-visual h2 {
        font-size: 2.2rem;
    }

    .service-cards-visual {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .contact-info-visual {
        padding: 2rem 1.5rem;
    }

    .thanks-message {
        padding: 2rem 1.5rem;
    }
}
