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

body {
    font-family: 'Avenir LT Book', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    font-weight: 300;
    font-size: 1.125rem;
}

.container {
    max-width: none;
    margin: 0;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: none;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo svg {
    flex-shrink: 0;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 6px;
    background-color: #000000;
    border-radius: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger span:nth-child(3) {
    display: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #000000;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #f9fafb;
    color: #000000;
}

/* Main Content */
main {
    margin-top: 120px;
}

/* Hero Section */
.hero {
    padding: 6rem 0 6rem;
    background-color: #ffffff;
}

.hero-content {
    text-align: left;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 2.25rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.7;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.cta-button {
    cursor: pointer;
    display: inline-block;
    margin-top: 2rem;
    position: relative;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #000000;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.cta-line {
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

.cta-button:hover .cta-line {
    height: 4px;
}

/* Image Section */
.image-section {
    padding: 6rem 0 4rem;
    background-color: #ffffff;
}

.image-content {
    max-width: 100%;
}

.image-content img {
    display: block;
    width: 100%;
    height: auto;
}

/* Services List Section */
.services-list {
    padding: 4rem 0;
    background-color: #ffffff;
}

.services-content {
    max-width: 800px;
    margin-left: 3rem;
}

.service-category {
    margin-bottom: 3rem;
}

.service-category h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category li {
    font-size: 1.25rem;
    font-weight: 300;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.services-list .service-category .service-description {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #007bff;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #000000;
    line-height: 1.6;
    font-weight: 300;
    font-size: 1.25rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.about h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.about p {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}

.about ul {
    list-style: none;
    margin-top: 2rem;
}

.about li {
    padding: 0.75rem 0;
    font-size: 1.25rem;
    color: #000000;
    display: flex;
    align-items: center;
    font-weight: 300;
}

/* Modern Services List Section */
.services-list-modern {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.modern-services-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modern-accordion-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-accordion-header {
    padding: 1.2rem 1.5rem;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.modern-accordion-header:hover {
    background-color: #f8f9fa;
}

.modern-accordion-header.active {
    background-color: #d32f2f;
    color: white;
    border-bottom-color: #d32f2f;
}

.modern-accordion-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.modern-accordion-icon {
    transition: transform 0.3s ease;
}

.modern-accordion-header.active .modern-accordion-icon {
    transform: rotate(180deg);
    stroke: white;
}

.modern-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.modern-accordion-content.active {
    max-height: 400px;
}

.modern-service-text {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.modern-service-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.modern-service-list {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.modern-service-item {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    color: #333333;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.modern-service-item:hover {
    background-color: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

/* Services Accordion Section */
.services-accordion {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.accordion-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.accordion-content > p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 1.5rem 2rem;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-header.active {
    background-color: #d32f2f;
    color: white;
}

.accordion-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
    stroke: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-text {
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.accordion-services {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-tag {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #333333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-tag:hover {
    background-color: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

/* Services Grid Section */
.services-grid-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.services-grid-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.services-grid-content > p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card-grid {
    background-color: #d32f2f;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 0;
}

.service-card-grid:hover {
    background-color: #b71c1c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.service-card-grid h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.service-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.service-card-grid.active .service-card-content {
    max-height: 200px;
    opacity: 1;
}

.service-card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.service-card-grid.active {
    height: 200px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.service-card-grid.active h3 {
    margin-bottom: 1rem;
}

/* Service Page Styles */
:root {
    --service-icon-primary: #333;
    --service-icon-secondary: #666;
    --service-icon-tertiary: #888;
    --service-icon-light: #aaa;
    --service-icon-bg: #f8f8f8;
    --service-icon-stroke: #333;
}

/* New Hero Section */
.service-hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    width: 100%;
    padding: 8rem 0;
}

.hero-background .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
}

.hero-content-wrapper {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.hero-content-wrapper h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: #d32f2f;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-stats-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.hero-stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item-inline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
}

.stat-icon-small {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    padding: 0.6rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content-inline {
    flex: 1;
    min-width: 0;
}

.stat-value-inline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d32f2f;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-text-inline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.stat-divider-inline {
    width: 1px;
    height: 40px;
    background-color: #eee;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
}

.btn-secondary:hover {
    border-color: #d32f2f;
    color: #d32f2f;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    max-width: 500px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.card-icon {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    padding: 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.card-subtitle {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* New Service Cards Section */
.service-cards-section-new {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border-radius: 50px;
}

.section-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-cards-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card-new {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon-new {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-number {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-new p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features-new {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-pill {
    background: #f0f0f0;
    color: #666;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-action {
    margin-top: auto;
}

.service-btn {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.service-btn:hover {
    background: #d32f2f;
    color: white;
    transform: translateY(-2px);
}

/* New Detail Section */
.detail-section-new {
    padding: 8rem 0;
    background-color: #ffffff;
}

.detail-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.detail-text-new h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.detail-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #f0f0f0;
    transform: translateX(10px);
}

.benefit-icon {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    padding: 1rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.detail-visual-new {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-stats {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-bubble {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #d32f2f;
    line-height: 1;
}

.stat-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

/* New Why PBC Section */
.why-pbc-section-new {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

.why-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.why-icon-new {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-number {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.why-highlight {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    color: #d32f2f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* New CTA Section */
.cta-section-new {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
}

.cta-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.cta-text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-check {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.cta-card-header p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary-large, .btn-secondary-large {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.btn-primary-large {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    border: none;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.btn-secondary-large {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary-large:hover {
    border-color: #d32f2f;
    color: #d32f2f;
}

.cta-contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-item {
    text-align: center;
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #000;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item span {
    color: #666;
    font-size: 0.85rem;
}

.contact-divider {
    width: 1px;
    height: 40px;
    background-color: #ddd;
}

/* New Related Services Section */
.related-services-section-new {
    padding: 8rem 0;
    background-color: #ffffff;
}

.related-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.related-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.related-card-image {
    position: relative;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.8), rgba(183, 28, 28, 0.9));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-card:hover .card-overlay {
    opacity: 1;
}

.service-icon-overlay {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.related-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.related-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.related-btn {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.related-btn:hover {
    background: #d32f2f;
    color: white;
    transform: translateY(-2px);
}

.all-services-cta-new {
    text-align: center;
    margin-top: 4rem;
}

.btn-all-services {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-all-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.3);
}

.service-card-icon {
    margin-bottom: 1.5rem;
}

.service-card-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d32f2f;
}

/* Service Detail Section */
.service-detail-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.detail-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}

.detail-text p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.detail-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-item strong {
    color: #d32f2f;
    font-weight: 600;
    font-size: 1.1rem;
}

.benefit-item span {
    color: #666666;
    font-size: 1rem;
}

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

/* Why PBC Section */
.why-pbc-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-pbc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-pbc-item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-icon svg {
    width: 60px;
    height: 60px;
}

.why-pbc-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.why-pbc-item p {
    color: #666666;
    line-height: 1.6;
}

/* Service CTA Section */
.service-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    text-align: center;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-features span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Related Services Section */
.related-services-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-service-card {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.related-service-content {
    padding: 1.5rem;
}

.related-service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.8rem;
}

.related-service-content p {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #b71c1c;
}

.all-services-cta {
    text-align: center;
    margin-top: 3rem;
}

.all-services-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d32f2f;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.all-services-button:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

/* Customers Section */
.customers-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.customers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.customers-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.customers-list h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

.customer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.customer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.customer-link:hover {
    color: #d32f2f;
    padding-left: 1rem;
}

.customer-link:hover svg {
    transform: translateX(5px);
}

.customer-link svg {
    transition: transform 0.3s ease;
}

/* Image Section with Overlay */
.image-section-overlay {
    padding: 0;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
}

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

.image-overlay-card {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 600px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 3rem;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.overlay-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.overlay-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.overlay-services {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.overlay-service-item {
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.overlay-service-item::before {
    content: '→';
    color: white;
    font-weight: bold;
}

/* Services Overview Section */
.services-overview {
    padding: 0;
    background-color: #f8f9fa;
}

.services-overview-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.services-left {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.services-right {
    background-image: url('Bild 1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.services-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
}

.services-overview h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.services-overview p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    flex: 0 0 auto;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background-color: #ffffff;
    color: #d32f2f;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.process-left {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-left h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
}

.process-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #d32f2f;
    border-radius: 2px;
}

.process-left p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.cta-button-secondary {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.2);
}

.cta-button-secondary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background-color: #e0e0e0;
    border-radius: 1px;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d32f2f;
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    background-color: #d32f2f;
    transform: scale(1.05);
}

.process-step:hover .step-icon svg {
    stroke: white;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.8rem;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.25rem;
}

.contact-item strong {
    color: #000000;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: #ffffff;
    color: #000000;
    padding: 3rem 0 0;
}

.footer .container {
    padding: 0 40px;
}

.footer-contact-box {
    background-color: #f5f5f5;
    border-radius: 0;
    padding: 3rem 5rem 5rem 5rem;
    margin: 0;
    position: relative;
}

.contact-content {
    text-align: left;
    position: relative;
}

.contact-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.company-info {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.company-info strong {
    font-weight: 700;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-methods p {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-methods p svg {
    flex-shrink: 0;
    vertical-align: middle;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    justify-content: flex-end;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    font-size: 1.125rem;
}

.footer-links a:hover {
    color: #666666;
}

/* Legal Pages Styles */
.page-content {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.content-wrapper h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #000000;
}

.legal-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.25rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
    font-size: 1.25rem;
}

.legal-section li {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 1.25rem;
}

.legal-section a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #666666;
}

.legal-section strong {
    color: #000000;
    font-weight: 700;
}

/* Simplified Impressum Styles */
.impressum-simple {
    text-align: left;
}

.impressum-simple .content-wrapper h1 {
    display: none;
}

.impressum-section {
    margin-bottom: 3rem;
}

.impressum-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
}

.impressum-section p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
    font-size: 1.25rem;
}

/* New Datenschutz Styles */
.datenschutz-new .content-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    text-align: left;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: left;
}

.privacy-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: left;
}

.privacy-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    text-align: left;
}

.privacy-section p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: left;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2.5rem;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-left {
        padding: 2rem;
    }
    
    .process-left h2 {
        font-size: 2rem;
    }
    
    .process-steps::before {
        left: 25px;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .accordion-content h2 {
        font-size: 2rem;
    }
    
    .accordion-header {
        padding: 1rem 1.5rem;
    }
    
    .accordion-header h3 {
        font-size: 1.2rem;
    }
    
    .accordion-text {
        padding: 1.5rem;
    }
    
    .accordion-services {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .service-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card-grid {
        padding: 1.5rem 1rem;
        height: 100px;
    }
    
    .service-card-grid h3 {
        font-size: 1rem;
    }
    
    .service-card-content p {
        font-size: 0.8rem;
    }
    
    .customers-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .customers-image {
        height: 300px;
        order: -1;
    }
    
    /* New Hero Mobile Styles */
    .service-hero-new {
        min-height: auto;
    }
    
    .hero-background {
        padding: 4rem 0;
    }
    
    .hero-background .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content-wrapper h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats-card {
        padding: 1.2rem 1.5rem;
    }
    
    .stats-row {
        gap: 0.8rem;
    }
    
    .stat-item-inline {
        gap: 0.6rem;
    }
    
    .stat-value-inline {
        font-size: 1.3rem;
    }
    
    .stat-text-inline {
        font-size: 0.75rem;
    }
    
    .stat-divider-inline {
        height: 35px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
        align-self: center;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detail-text {
        order: 1;
    }
    
    .detail-image {
        order: 2;
    }
    
    .why-pbc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .customers-list h2 {
        font-size: 2rem;
    }
    
    .customer-link {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    .image-container img {
        height: 350px;
    }
    
    .image-overlay-card {
        position: static;
        width: auto;
        margin: 2rem;
        padding: 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overlay-content h3 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .overlay-service-item {
        font-size: 0.9rem;
    }
    
    .services-overview-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .services-left {
        clip-path: none;
        padding: 3rem 2rem;
    }
    
    .services-right {
        min-height: 300px;
        order: -1;
    }
    
    .services-overview h2 {
        font-size: 2.2rem;
    }
    
    .services-overview p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: none;
    }
    
    .services-grid {
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-content p,
    .company-info,
    .contact-methods p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-contact-box {
        padding: 2rem 3rem 4rem 3rem;
        border-radius: 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .footer .container {
        padding: 0 20px;
    }
    
    .footer-links {
        position: static;
        margin-bottom: 0;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .services-content {
        margin-left: 1rem;
    }
    
    .cta-text {
        font-size: 1.25rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 4rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .services,
    .about,
    .contact {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}
