* {
    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: #2c3e50;
    background: #ffffff;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background: #34495e;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.intro-image {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.services-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #546e7a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin: 1.5rem 0;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

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

.benefits-split {
    display: flex;
    align-items: stretch;
    min-height: 650px;
}

.benefits-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #34495e;
    color: #ffffff;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

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

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefits-visual {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-section.hidden {
    display: none;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.selected-service-display {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

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

.btn-submit:hover {
    background: #2980b9;
}

.testimonials {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.cta-final {
    padding: 6rem 2rem;
    background: #3498db;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.footer-section p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #7f8c8d;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-hero p {
    font-size: 1.25rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.story-visual {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.values-split {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.values-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #3498db;
}

.value-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.values-visual {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-role {
    font-size: 0.95rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.approach-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 2rem;
    background: #3498db;
    text-align: center;
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 1.25rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail-visual {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

.service-detail-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-info h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-info p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-info ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-info ul li {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 2rem 0;
}

.btn-book-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-book-service:hover {
    background: #2980b9;
}

.pricing-note {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.note-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.note-content p {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-content {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.contact-info-block {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #3498db;
}

.contact-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.contact-approach {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-approach h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.flow-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.flow-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.flow-step p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.faq-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-hero {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.thanks-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 2rem;
    font-weight: 600;
}

.service-confirmation {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.next-steps {
    padding: 6rem 2rem;
    background: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.step-card p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: italic;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.gdpr-table th,
.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.gdpr-table td,
.cookies-table td {
    color: #546e7a;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .about-story,
    .values-split,
    .contact-content,
    .thanks-hero {
        flex-direction: column;
    }

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

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

    .hero-content,
    .intro-text,
    .benefits-content,
    .story-content,
    .values-content,
    .contact-info-block,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .service-info,
    .service-detail-info {
        padding: 2rem;
    }

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

    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-notice {
        flex-basis: 100%;
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }
}