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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 2px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand h1 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 8px 12px;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclosure-label {
    font-size: 13px;
    color: #856404;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
    transition: color 0.3s ease;
    position: relative;
}

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

.hero-editorial {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a2332;
}

.hero-intro {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-link-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-link-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-narrative {
    padding: 100px 20px;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-benefits {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.split-benefits {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.benefits-left,
.benefits-right {
    flex: 1;
}

.benefits-left img {
    border-radius: 8px;
}

.benefits-right h3 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.benefit-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.services-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 19px;
    color: #7f8c8d;
}

.services-magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 20px;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
}

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

.service-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.select-service-btn {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.select-service-btn.selected {
    background-color: #27ae60;
}

.testimonials-inline {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 36px;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.testimonial-item blockquote p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.testimonial-item cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.trust-building {
    padding: 100px 20px;
    background-color: #ffffff;
}

.trust-content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.trust-text-block {
    flex: 1.2;
}

.trust-text-block h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.trust-image-block {
    flex: 0.8;
}

.trust-image-block img {
    border-radius: 8px;
}

.cta-section-inline {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

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

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

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

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

.form-group input[readonly] {
    background-color: #f3f4f6;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
}

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

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff9e6;
    border-top: 2px solid #ffc107;
}

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

.disclaimer-content h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #856404;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    padding: 16px 28px;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #229954;
    transform: scale(1.05);
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.story-image,
.story-text {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
}

.story-text h3 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h3 {
    font-size: 38px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.expertise-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.expertise-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.expertise-text,
.expertise-image {
    flex: 1;
}

.expertise-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.expertise-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

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

.expertise-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.expertise-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.expertise-image img {
    border-radius: 8px;
}

.team-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h3 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.team-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.team-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 260px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin: 20px 20px 8px;
    color: #2c3e50;
}

.team-role {
    font-size: 14px;
    color: #3498db;
    margin: 0 20px 12px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    padding: 0 20px 20px;
}

.mission-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.mission-content h3 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-intro {
    padding: 40px 20px;
    background-color: #ffffff;
}

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

.intro-text-centered p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-detail-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

.service-detail-image img {
    border-radius: 8px;
}

.service-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.cta-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-centered h3 {
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-details,
.contact-map {
    flex: 1;
}

.contact-details h3 {
    font-size: 34px;
    margin-bottom: 36px;
    color: #2c3e50;
}

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

.contact-block h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-map img {
    border-radius: 8px;
    width: 100%;
}

.contact-additional {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.additional-info {
    max-width: 900px;
    margin: 0 auto;
}

.additional-info h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.contact-cta {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box-centered h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-box-centered p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 28px;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 28px;
}

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #f0f9ff;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-info h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.selected-service-info p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

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

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.thanks-next-steps ol {
    list-style: decimal;
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 20px;
}

.legal-content em {
    color: #7f8c8d;
    font-size: 14px;
}

@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .ad-disclosure {
        order: -1;
        flex: 1;
    }

    .brand {
        order: 0;
    }

    .main-nav {
        order: 1;
    }

    .hero-content-wrap {
        flex-direction: row;
        align-items: center;
    }

    .split-benefits,
    .trust-content-asymmetric,
    .story-layout,
    .expertise-asymmetric,
    .contact-layout {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-item {
        flex-direction: row;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-text-column h2 {
        font-size: 32px;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }

    .benefits-right h3,
    .trust-text-block h3,
    .story-text h3,
    .expertise-text h3 {
        font-size: 28px;
    }

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

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

    .team-member {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

    .sticky-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-content-centered h2 {
        font-size: 36px;
    }

    .service-detail-item {
        padding: 28px 20px;
    }
}