/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-cookie-accept {
    background: #2ecc71;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #27ae60;
}

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

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background: #ecf0f1;
    color: #e74c3c;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    position: relative;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

.btn-submit {
    background: #2ecc71;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background: #27ae60;
}

.btn-select-service {
    padding: 12px 30px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Section Styling - STACKED SECTIONS FLOW */
section {
    padding: 80px 0;
}

.intro-section {
    background: #ecf0f1;
    padding: 100px 0;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

/* Problem Section */
.problem-section {
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-right h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    margin-bottom: 25px;
}

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

.value-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Services Preview Section */
.services-preview {
    background: #ffffff;
    padding: 100px 0;
}

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

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

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 100px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.testimonial {
    margin-bottom: 50px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    opacity: 0.8;
    text-align: right;
}

/* Process Section */
.process-section {
    background: #ecf0f1;
    padding: 100px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    padding: 60px 50px;
    border-radius: 15px;
    text-align: center;
}

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

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

.cta-box .btn-primary {
    background: #ffffff;
    color: #e74c3c;
}

.cta-box .btn-primary:hover {
    background: #ecf0f1;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

/* Final Section */
.final-section {
    background: #34495e;
    color: #ffffff;
    padding: 80px 0;
}

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

.final-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.final-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page */
.about-intro {
    padding: 100px 0;
    background: #ffffff;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.team-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.member-image svg {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 15px;
}

.team-member p {
    color: #7f8c8d;
    line-height: 1.6;
}

.values-about {
    background: #ffffff;
    padding: 100px 0;
}

.values-about h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
}

.experience-section {
    background: #ecf0f1;
    padding: 100px 0;
}

.approach-section {
    background: #ffffff;
    padding: 100px 0;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

/* Services Page */
.services-intro {
    background: #f8f9fa;
    padding: 60px 0;
}

.services-intro p {
    text-align: center;
    font-size: 18px;
    color: #34495e;
}

.services-detailed {
    background: #ffffff;
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 60px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-content {
    padding: 50px;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-description {
    margin-bottom: 30px;
}

.service-description p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #34495e;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.price-note {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 14px;
}

.services-note {
    background: #ecf0f1;
    padding: 60px 0;
}

.services-note h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-note p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-cta {
    background: #ffffff;
    padding: 80px 0;
}

/* Contact Page */
.contact-info-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-card p {
    color: #34495e;
    line-height: 1.7;
}

.contact-card a {
    color: #3498db;
    font-weight: 600;
}

.contact-intro {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-intro h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-intro p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
}

.map-section {
    background: #ffffff;
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.map-placeholder {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.directions {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.directions h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.directions p {
    font-size: 17px;
    color: #34495e;
}

.contact-notes {
    background: #ecf0f1;
    padding: 80px 0;
}

.contact-notes h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-notes p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.info-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #34495e;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 20px;
}

.faq-section {
    background: #ffffff;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    color: #34495e;
    line-height: 1.7;
}

.final-cta {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Thanks Page */
.thanks-hero {
    background: #ffffff;
    padding: 100px 0;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 25px;
}

#selected-service-display {
    font-size: 18px;
    color: #7f8c8d;
    margin-top: 20px;
}

.next-steps {
    background: #f8f9fa;
    padding: 80px 0;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    color: #34495e;
    line-height: 1.7;
}

.thanks-info {
    background: #ffffff;
    padding: 60px 0;
}

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

.thanks-info p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.thanks-cta {
    background: #f8f9fa;
    padding: 60px 0;
}

.cta-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    background: #ffffff;
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: #34495e;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content strong {
    color: #2c3e50;
}

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

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

.cookies-table td {
    color: #34495e;
}

/* Responsive Design */
@media (max-width: 992px) {
    .split-content {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav a {
        display: block;
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .intro-text h2,
    .section-header-center h2 {
        font-size: 28px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}

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

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .service-detail-content {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 40px 25px;
    }
}
