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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb5;
    --accent-color: #e8912d;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-card {
    padding: 60px 0;
}

.hero-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-image-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.hero-text-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-text-card p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

.intro-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.intro-card-wrap {
    display: flex;
    justify-content: center;
}

.intro-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
}

.intro-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.intro-card p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 56px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    min-width: 300px;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

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

.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
}

.benefit-card.large-card {
    flex: 1 1 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.benefit-card.large-card h2 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-card.large-card p {
    color: var(--bg-white);
    font-size: 18px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.process-cards {
    display: flex;
    gap: 24px;
}

.process-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.form-card > p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.selected-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: none;
    border-left: 4px solid var(--accent-color);
}

.selected-service-info.active {
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 17px;
    margin-top: 8px;
}

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

.trust-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.trust-grid {
    display: flex;
    gap: 32px;
}

.trust-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.trust-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.trust-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.7;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-medium);
}

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

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: var(--text-medium);
    padding: 10px 24px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-alt:hover {
    border-color: var(--text-medium);
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding: 80px 0;
}

.about-intro-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.about-intro-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-intro-card p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.value-card {
    flex: 1 1 calc(50% - 24px);
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    min-width: 280px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.about-approach {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.approach-image-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.approach-text-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.approach-text-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.approach-text-card p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-expertise {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.about-expertise h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.expertise-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.expertise-card {
    flex: 1 1 calc(50% - 24px);
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    min-width: 260px;
}

.expertise-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.expertise-card p {
    font-size: 15px;
    color: var(--text-medium);
}

.about-team {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.about-team h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-team p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-cta-card {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-cta-card h2 {
    font-size: 32px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.about-cta-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.service-detail-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-medium);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.services-cta-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.cta-card-large {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-card-large h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-card-large p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.contact-info-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-medium);
}

.contact-map-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-map-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

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

.map-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-additional {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-additional h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-additional p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-card h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
    border-left: 4px solid var(--accent-color);
}

.service-confirmation.active {
    display: block;
}

.service-confirmation p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.next-steps-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.next-step-item {
    flex: 1;
    max-width: 220px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.next-step-item p {
    font-size: 15px;
    color: var(--text-medium);
}

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

.legal-content {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.legal-document {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-document h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.legal-document h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-document h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-document p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-document ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-document ul li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-document a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        transition: left 0.3s;
        box-shadow: var(--shadow-md);
    }

    .nav.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .benefits-layout {
        flex-direction: column;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

    .next-steps-grid {
        flex-direction: column;
    }

    .next-step-item {
        max-width: 100%;
    }

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

@media (max-width: 640px) {
    .hero-text-card h1 {
        font-size: 32px;
    }

    .hero-text-card p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .page-hero p {
        font-size: 17px;
    }

    .hero-text-card,
    .intro-card,
    .form-card,
    .service-detail-card,
    .contact-info-card,
    .contact-map-card,
    .contact-additional,
    .thanks-card,
    .legal-document,
    .about-intro-card,
    .approach-text-card,
    .about-expertise,
    .about-team,
    .about-cta-card {
        padding: 32px;
    }

    .cta-card-large {
        padding: 40px 24px;
    }
}