/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    --primary-color: #c41e3a;
    --secondary-color: #8b0000;
    --accent-color: #ff4444;
    --light-bg: #faf7f7;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #f0d0d0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1px;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    perspective: 1000px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.35) 0%, rgba(139, 0, 0, 0.35) 50%, rgba(20, 20, 40, 0.4) 100%);
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: zoomIn 8s ease-out forwards;
    will-change: transform;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-title .word {
    display: inline-block;
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: var(--delay);
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeIn 0.8s ease-out 0.6s both;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
    animation: fadeIn 0.8s ease-out 0.8s both;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 1s both;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-secondary:focus {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.4s both;
    position: relative;
}

.floating-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imageZoom 1s ease-out forwards;
}

.image-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    text-align: center;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-indicator span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0f0f6;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 124, 140, 0.15);
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
}

.service-icon svg {
    width: 50%;
    height: 50%;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   QUALITY SECTION
   ============================================ */

.quality {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf7f7 0%, #f5e8e8 100%);
}

.quality-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-content {
    animation: slideInLeft 0.8s ease-out;
}

.quality-title {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quality-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.quality-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.quality-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quality-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.quality-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
}

.quality-point h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.quality-point p {
    color: var(--text-light);
    margin: 0;
}

.quality-image {
    animation: slideInRight 0.8s ease-out;
}

.image-placeholder-secondary {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 140, 0.1), rgba(232, 244, 248, 0.5));
    border-radius: 20px;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.image-placeholder-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder-secondary svg {
    width: 70%;
    height: 70%;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   INTERNATIONAL SECTION
   ============================================ */

.international {
    padding: 100px 0;
    background: white;
}

.international-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.international-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.international-text > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.international-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.international-list li {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.international-list li:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-left-color: white;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 140, 0.05), rgba(232, 244, 248, 0.3));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e0f0f6;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-placeholder svg {
    width: 90%;
    height: 90%;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf7f7 0%, #f5e8e8 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-item ul {
    list-style: none;
}

.contact-item ul li {
    margin-bottom: 0.8rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideInRight 0.8s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 140, 0.1);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--text-dark);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #95a5a6;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes imageZoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop - 1440px and above */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

/* Tablet Landscape - 1024px to 1199px */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .quality-container {
        gap: 2rem;
    }

    .international-content {
        gap: 2rem;
    }

    .contact-grid {
        gap: 2rem;
    }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }

    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem 1.5rem;
        gap: 1rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-link {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo .tagline {
        font-size: 0.65rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 70px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    /* Sections */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Quality Section */
    .quality {
        padding: 60px 0;
    }

    .quality-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quality-image {
        order: -1;
    }

    .quality-content h3 {
        font-size: 1.9rem;
    }

    .image-placeholder-secondary {
        height: 300px;
    }

    /* International Section */
    .international {
        padding: 60px 0;
    }

    .international-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .international-text h3 {
        font-size: 1.9rem;
    }

    .international-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .map-placeholder {
        height: 300px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Small Tablet & Large Mobile - 576px to 767px */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 12px;
    }

    /* Navigation */
    .navbar {
        backdrop-filter: blur(8px);
    }

    .nav-container {
        padding: 0.75rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo .tagline {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .nav-menu {
        top: 65px;
        padding: 1.5rem;
        gap: 0.75rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 65px;
        min-height: 85vh;
        text-align: center;
    }

    .hero-container {
        gap: 1.5rem;
        justify-items: center;
    }

    .hero-content {
        gap: 1rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.9rem;
        letter-spacing: 0px;
        margin-bottom: 0.8rem;
    }

    .hero-title .word {
        display: block;
        margin-bottom: 0.1rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 0.6rem;
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 0px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    /* Sections */
    .services {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* Quality Section */
    .quality {
        padding: 50px 0;
    }

    .quality-title {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .quality-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .quality-content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .quality-points {
        gap: 1rem;
    }

    .quality-point {
        gap: 1rem;
    }

    .quality-number {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.2rem;
    }

    .quality-point h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .quality-point p {
        font-size: 0.9rem;
    }

    .image-placeholder-secondary {
        height: 250px;
        border-radius: 15px;
    }

    /* International Section */
    .international {
        padding: 50px 0;
    }

    .international-content {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .international-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .international-text > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .international-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .international-list li {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .map-placeholder {
        height: 250px;
        border-radius: 15px;
    }

    /* Contact Section */
    .contact {
        padding: 50px 0;
    }

    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-item h4 {
        margin-bottom: 0.35rem;
        font-size: 0.95rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem 0.9rem;
        font-size: 1rem;
        border-radius: 6px;
    }

    .contact-form .btn {
        margin-top: 0.75rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Mobile - 360px to 575px */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    /* Navigation */
    .navbar {
        backdrop-filter: blur(6px);
    }

    .nav-container {
        padding: 0.6rem 0;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .logo .tagline {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }

    .nav-menu {
        top: 60px;
        padding: 1.25rem 1rem;
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }

    /* Hero Section */
    .hero {
        padding-top: 60px;
        min-height: 80vh;
        text-align: center;
    }

    .hero-container {
        gap: 1.2rem;
        justify-items: center;
    }

    .hero-content {
        gap: 0.8rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 0;
        margin-bottom: 0.6rem;
        line-height: 1.1;
    }

    .hero-title .word {
        display: block;
        margin-bottom: 0.1rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        max-width: 100%;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0px;
        border-radius: 6px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .scroll-mouse {
        width: 20px;
        height: 35px;
        border-width: 1.5px;
    }

    /* Sections */
    .services {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.85rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Quality Section */
    .quality {
        padding: 40px 0;
    }

    .quality-title {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .quality-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .quality-content > p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .quality-points {
        gap: 0.8rem;
    }

    .quality-point {
        gap: 0.8rem;
    }

    .quality-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .quality-point h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .quality-point p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .image-placeholder-secondary {
        height: 220px;
        border-radius: 12px;
    }

    /* International Section */
    .international {
        padding: 40px 0;
    }

    .international-content {
        margin-top: 1.5rem;
        gap: 1.25rem;
    }

    .international-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .international-text > p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .international-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .international-list li {
        padding: 0.7rem;
        font-size: 0.9rem;
        border-left-width: 3px;
    }

    .map-placeholder {
        height: 220px;
        border-radius: 12px;
    }

    /* Contact Section */
    .contact {
        padding: 40px 0;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .contact-item {
        margin-bottom: 1.2rem;
    }

    .contact-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .contact-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-item ul li {
        margin-bottom: 0.6rem;
    }

    .contact-form {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
        border-radius: 5px;
    }

    .contact-form .btn {
        margin-top: 0.6rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 0.75rem;
    }

    .footer-content {
        gap: 1.25rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile - Below 360px */
@media (max-width: 359px) {
    .container {
        padding: 0 8px;
    }

    .hero {
        min-height: 75vh;
        text-align: center;
    }

    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 0.6rem;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.78rem;
        margin-bottom: 0.8rem;
    }

    .hero-buttons {
        gap: 0.4rem;
        justify-content: center;
    }

    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.75rem;
        border-radius: 5px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .quality-content h3,
    .international-text h3 {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* ============================================
   ÜBER UNS PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
}

/* About Sections General */
.about-section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-title.centered {
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Experience Section */
.about-experience {
    background: white;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Visual Card with Stats */
.visual-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
}

.visual-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Competence Section */
.about-competence {
    background: linear-gradient(135deg, #faf7f7 0%, #f5e8e8 100%);
}

.competence-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.competence-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.competence-image:hover img {
    transform: scale(1.05);
}

/* Expertise Section */
.expertise-section {
    margin-top: 5rem;
}

.expertise-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
    border-color: var(--primary-color);
}

.expertise-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.expertise-icon svg {
    width: 22px;
    height: 22px;
}

.expertise-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Quality Section */
.about-quality {
    background: white;
}

.quality-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.quality-feature-card {
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0f0f6;
}

.quality-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 140, 0.15);
}

.feature-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(196, 30, 58, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.quality-feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.quality-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.about-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.about-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    color: white;
}

.contact-card-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-detail-text a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-detail-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.btn-contact {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-map-placeholder {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.map-pin {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.map-pin svg {
    width: 20px;
    height: 20px;
}

.map-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Styles for About Page */
@media (max-width: 1023px) {
    .about-hero {
        min-height: 50vh;
        padding-top: 80px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid.reverse {
        direction: ltr;
    }

    .about-section {
        padding: 60px 0;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-features {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map-placeholder {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 45vh;
        padding-top: 70px;
        text-align: center;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        padding: 1rem 1.25rem;
    }

    .visual-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .competence-image {
        height: 300px;
    }

    .quality-feature-card {
        padding: 2rem;
    }

    .feature-number {
        font-size: 3rem;
    }

    .contact-card-title {
        font-size: 2rem;
    }

    .contact-map-placeholder {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .about-hero {
        min-height: 40vh;
        padding-top: 65px;
    }

    .about-hero-title {
        font-size: 1.6rem;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .expertise-section {
        margin-top: 3rem;
    }

    .expertise-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .expertise-card {
        padding: 0.9rem 1rem;
    }

    .expertise-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .expertise-card span {
        font-size: 0.85rem;
    }

    .competence-image {
        height: 250px;
    }

    .quality-feature-card {
        padding: 1.5rem;
    }

    .quality-feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .contact-card-title {
        font-size: 1.6rem;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .contact-map-placeholder {
        height: 250px;
    }

    .map-overlay {
        padding: 1.5rem;
    }
}

/* ============================================
   JOBS PAGE STYLES
   ============================================ */

/* Jobs Hero Section */
.jobs-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.jobs-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.jobs-hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.jobs-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
}

.jobs-cta {
    margin-top: 1rem;
}

/* Jobs Sections General */
.jobs-section {
    padding: 100px 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.jobs-grid.reverse {
    direction: rtl;
}

.jobs-grid.reverse > * {
    direction: ltr;
}

.jobs-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.jobs-title.centered {
    text-align: center;
}

.jobs-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.jobs-text.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Jobs Offer Section */
.jobs-offer {
    background: white;
}

.target-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.target-group-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    border-radius: 50px;
    border: 1px solid #e0f0f6;
    transition: all 0.3s ease;
}

.target-group-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
}

.target-group-item:hover svg {
    color: white;
}

.target-group-item:hover span {
    color: white;
}

.target-group-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.target-group-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* Time Card */
.time-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
}

.time-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.time-header svg {
    width: 32px;
    height: 32px;
}

.time-header span {
    font-size: 1.3rem;
    font-weight: 700;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.time-slot.weekend {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-slot .day {
    font-weight: 600;
    font-size: 1rem;
}

.time-slot .hours {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.time-options {
    display: flex;
    gap: 1rem;
}

.time-options .option {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Jobs Looking Section */
.jobs-looking {
    background: linear-gradient(135deg, #faf7f7 0%, #f5e8e8 100%);
}

.looking-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.looking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.looking-image:hover img {
    transform: scale(1.05);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.skill-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.skill-icon svg {
    width: 18px;
    height: 18px;
}

.skill-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Jobs Benefits Section */
.jobs-benefits {
    background: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Training Section */
.training-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    border-radius: 20px;
}

.training-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.training-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.training-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.training-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.training-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Locations Section */
.locations-section {
    margin-bottom: 5rem;
    text-align: center;
}

.locations-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.locations-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.locations-header p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.locations-header .highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.locations-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.location-card {
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    border-radius: 15px;
    border: 1px solid #e0f0f6;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 140, 0.15);
}

.location-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.location-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Benefits Grid */
.benefits-grid-section {
    margin-bottom: 5rem;
}

.benefits-grid-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0f0f6;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 124, 140, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Worth Section */
.worth-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.worth-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.worth-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* Jobs Contact Section */
.jobs-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.jobs-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.jobs-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.jobs-contact-info {
    color: white;
}

.jobs-contact-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.jobs-contact-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.jobs-locations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jobs-location-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-marker {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.location-marker svg {
    width: 22px;
    height: 22px;
}

.location-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.jobs-location-item > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-contact span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.location-contact a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.location-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Event Card */
.event-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.event-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.event-icon svg {
    width: 32px;
    height: 32px;
}

.event-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.event-details {
    margin-bottom: 2rem;
}

.event-schedule {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.event-schedule strong {
    color: var(--primary-color);
}

.event-location {
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-cta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.event-cta p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.btn-event {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

/* Responsive Styles for Jobs Page */
@media (max-width: 1023px) {
    .jobs-hero {
        min-height: 50vh;
        padding-top: 80px;
    }

    .jobs-hero-title {
        font-size: 2.5rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .jobs-grid.reverse {
        direction: ltr;
    }

    .jobs-section {
        padding: 60px 0;
    }

    .training-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jobs-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .locations-cards {
        flex-direction: column;
        align-items: center;
    }

    .location-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .jobs-hero {
        min-height: 45vh;
        padding-top: 70px;
        text-align: center;
    }

    .jobs-hero-title {
        font-size: 2rem;
    }

    .jobs-hero-subtitle {
        font-size: 1.1rem;
    }

    .jobs-title {
        font-size: 1.8rem;
    }

    .jobs-text {
        font-size: 1rem;
    }

    .target-groups {
        justify-content: center;
    }

    .time-card {
        padding: 2rem;
    }

    .looking-image {
        height: 300px;
    }

    .training-section {
        padding: 2rem;
    }

    .training-content h3 {
        font-size: 1.5rem;
    }

    .locations-header h3 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .worth-section {
        padding: 2rem;
    }

    .worth-content h3 {
        font-size: 1.6rem;
    }

    .jobs-contact-title {
        font-size: 2rem;
    }

    .event-card {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    .jobs-hero {
        min-height: 40vh;
        padding-top: 65px;
    }

    .jobs-hero-title {
        font-size: 1.6rem;
    }

    .jobs-hero-subtitle {
        font-size: 0.95rem;
    }

    .jobs-section {
        padding: 40px 0;
    }

    .jobs-title {
        font-size: 1.5rem;
    }

    .jobs-text {
        font-size: 0.95rem;
    }

    .target-group-item {
        padding: 0.6rem 1rem;
    }

    .target-group-item svg {
        width: 18px;
        height: 18px;
    }

    .target-group-item span {
        font-size: 0.85rem;
    }

    .time-card {
        padding: 1.5rem;
    }

    .time-header span {
        font-size: 1.1rem;
    }

    .looking-image {
        height: 250px;
    }

    .skill-item {
        padding: 0.85rem 1rem;
    }

    .training-section {
        padding: 1.5rem;
    }

    .training-content h3 {
        font-size: 1.3rem;
    }

    .training-step {
        padding: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1rem;
    }

    .locations-header h3 {
        font-size: 1.3rem;
    }

    .location-card {
        padding: 1.5rem 2rem;
    }

    .benefits-grid-title {
        font-size: 1.4rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .worth-section {
        padding: 1.5rem;
    }

    .worth-content h3 {
        font-size: 1.4rem;
    }

    .worth-content p {
        font-size: 0.95rem;
    }

    .jobs-contact-title {
        font-size: 1.6rem;
    }

    .jobs-contact-intro {
        font-size: 0.95rem;
    }

    .jobs-location-item {
        padding: 1.25rem;
    }

    .event-card {
        padding: 1.5rem;
    }

    .event-icon {
        width: 60px;
        height: 60px;
    }

    .event-card h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   LEISTUNGEN PAGE STYLES
   ============================================ */

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.services-hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.services-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

/* Services Page Sections */
.services-page-section {
    padding: 100px 0;
}

.services-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-page-grid.reverse {
    direction: rtl;
}

.services-page-grid.reverse > * {
    direction: ltr;
}

.services-page-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-page-title.centered {
    text-align: center;
}

.services-page-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Targets Section */
.services-targets {
    background: white;
}

.target-groups-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.target-group-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    border-radius: 12px;
    border: 1px solid #e0f0f6;
    transition: all 0.3s ease;
}

.target-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
    border-color: var(--primary-color);
}

.target-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.target-icon svg {
    width: 24px;
    height: 24px;
}

.target-group-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* MicroCATI Section */
.services-microcati {
    background: linear-gradient(135deg, #faf7f7 0%, #f5e8e8 100%);
}

.stats-showcase {
    display: grid;
    gap: 1.5rem;
}

.stat-big-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.stat-big-card.secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-big-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-big-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.stat-big-card.secondary .stat-big-label {
    color: var(--text-light);
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-trend svg {
    width: 24px;
    height: 24px;
}

.capacity-features {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.capacity-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.capacity-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.1);
}

.capacity-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.capacity-feature span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Project Types Section */
.services-types {
    background: white;
}

.types-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-type-card {
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e0f0f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(74, 124, 140, 0.15);
}

.service-type-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    grid-column: span 2;
}

.service-type-card.featured .service-type-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-type-card.featured h3 {
    color: white;
}

.service-type-card.featured .service-type-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.service-type-card.featured .service-type-desc {
    color: rgba(255, 255, 255, 0.9);
}

.service-type-card.featured .service-type-features span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-type-icon svg {
    width: 28px;
    height: 28px;
}

.service-type-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-type-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-type-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-type-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-type-features span {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 0, 0, 0.1));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Services Contact Section */
.services-contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.services-contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-contact-info {
    color: white;
}

.services-contact-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-contact-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.services-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.services-contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.services-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.services-contact-icon svg {
    width: 24px;
    height: 24px;
}

.services-contact-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.services-contact-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.services-contact-text a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.services-contact-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.services-contact-visual {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.services-contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.overlay-icon svg {
    width: 24px;
    height: 24px;
}

.overlay-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Styles for Services Page */
@media (max-width: 1023px) {
    .services-hero {
        min-height: 50vh;
        padding-top: 80px;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-page-grid.reverse {
        direction: ltr;
    }

    .services-page-section {
        padding: 60px 0;
    }

    .target-groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-types-grid {
        grid-template-columns: 1fr;
    }

    .service-type-card.featured {
        grid-column: span 1;
    }

    .services-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-contact-visual {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        min-height: 45vh;
        padding-top: 70px;
        text-align: center;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1.1rem;
    }

    .services-page-title {
        font-size: 1.8rem;
    }

    .services-page-text {
        font-size: 1rem;
    }

    .target-groups-grid {
        grid-template-columns: 1fr;
    }

    .target-group-card {
        padding: 1rem 1.25rem;
    }

    .target-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .stat-big-number {
        font-size: 2.5rem;
    }

    .service-type-card {
        padding: 2rem;
    }

    .services-contact-title {
        font-size: 2rem;
    }

    .services-contact-visual {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .services-hero {
        min-height: 40vh;
        padding-top: 65px;
    }

    .services-hero-title {
        font-size: 1.6rem;
    }

    .services-hero-subtitle {
        font-size: 0.95rem;
    }

    .services-page-section {
        padding: 40px 0;
    }

    .services-page-title {
        font-size: 1.5rem;
    }

    .services-page-text {
        font-size: 0.95rem;
    }

    .target-group-card {
        padding: 0.9rem 1rem;
    }

    .target-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .target-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-big-card {
        padding: 1.5rem;
    }

    .stat-big-number {
        font-size: 2rem;
    }

    .stat-big-label {
        font-size: 0.9rem;
    }

    .service-type-card {
        padding: 1.5rem;
    }

    .service-type-icon {
        width: 50px;
        height: 50px;
    }

    .service-type-card h3 {
        font-size: 1.25rem;
    }

    .service-type-features span {
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }

    .services-contact-title {
        font-size: 1.6rem;
    }

    .services-contact-intro {
        font-size: 0.95rem;
    }

    .services-contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .services-contact-visual {
        height: 250px;
    }
}

/* ================================================
   SIE WURDEN ANGERUFEN PAGE STYLES
   ================================================ */

/* Hero Section */
.called-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px;
    overflow: hidden;
}

.called-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.called-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.called-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.called-phone-number {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

/* Reason Section */
.called-reason-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.called-reason-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.called-reason-content {
    animation: slideInLeft 1s ease-out;
}

.called-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.called-section-title.centered {
    text-align: center;
}

.called-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.called-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.called-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.called-info-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.called-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
}

.called-info-card span {
    font-weight: 600;
    color: var(--dark-color);
}

.called-reason-visual {
    animation: slideInRight 1s ease-out;
}

.called-visual-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.called-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 6s ease-in-out infinite;
}

.visual-icon-large {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.called-visual-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.called-visual-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Section */
.called-why-section {
    padding: 100px 20px;
    background: white;
}

.called-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.called-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.called-why-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.called-why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
}

.why-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.called-why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.called-why-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Privacy Section */
.called-privacy-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.called-privacy-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.called-privacy-visual {
    display: flex;
    justify-content: center;
    animation: slideInLeft 1s ease-out;
}

.privacy-shield {
    position: relative;
    color: var(--primary-color);
    animation: float 4s ease-in-out infinite;
}

.shield-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    color: var(--primary-color);
}

.called-privacy-content {
    animation: slideInRight 1s ease-out;
}

.privacy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.privacy-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.privacy-feature span {
    font-weight: 500;
    color: var(--dark-color);
}

.no-call-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.no-call-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.no-call-box > p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    border-color: var(--primary-color);
    background: white;
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* FAQ Section */
.called-faq-section {
    padding: 100px 20px;
    background: white;
}

.called-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.called-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.1);
    transform: translateY(-5px);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.faq-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.faq-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.called-contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.called-contact-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.called-contact-header .section-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.called-contact-header .called-section-title {
    color: white;
}

.called-contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-top: 1rem;
}

.called-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card-called {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card-called:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.contact-card-called h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
}

.contact-link svg {
    flex-shrink: 0;
}

/* Responsive Styles for Called Page */
@media (max-width: 1199px) {
    .called-reason-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .called-privacy-grid {
        grid-template-columns: 0.5fr 1.5fr;
    }
}

@media (max-width: 1023px) {
    .called-hero {
        min-height: 60vh;
    }

    .called-reason-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .called-reason-visual {
        order: -1;
    }

    .called-visual-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .called-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .called-privacy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .called-privacy-visual {
        order: -1;
    }

    .privacy-shield svg {
        width: 100px;
        height: 100px;
    }

    .shield-checkmark svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 767px) {
    .called-hero {
        min-height: 55vh;
        padding: 120px 20px 80px;
    }

    .called-phone-number {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .phone-text {
        font-size: 1.2rem;
    }

    .called-reason-section,
    .called-why-section,
    .called-privacy-section,
    .called-faq-section,
    .called-contact-section {
        padding: 70px 20px;
    }

    .called-why-grid {
        grid-template-columns: 1fr;
    }

    .called-faq-grid {
        grid-template-columns: 1fr;
    }

    .called-contact-grid {
        grid-template-columns: 1fr;
    }

    .called-info-cards {
        flex-direction: column;
    }

    .called-info-card {
        justify-content: center;
    }

    .privacy-features {
        flex-direction: column;
    }

    .no-call-box {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .called-hero-title {
        font-size: 2rem;
    }

    .called-section-title {
        font-size: 1.6rem;
    }

    .called-visual-card {
        padding: 40px 25px;
    }

    .visual-icon-large svg {
        width: 60px;
        height: 60px;
    }

    .why-card-icon {
        width: 70px;
        height: 70px;
    }

    .why-card-icon svg {
        width: 36px;
        height: 36px;
    }

    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-text {
        align-items: center;
    }
}

@media (max-width: 359px) {
    .called-hero {
        padding: 100px 15px 60px;
    }

    .phone-text {
        font-size: 1rem;
    }

    .called-visual-card h3 {
        font-size: 1.4rem;
    }

    .faq-card {
        padding: 20px;
    }

    .contact-card-called {
        padding: 30px 20px;
    }
}

/* ================================================
   LEGAL PAGES STYLES (Impressum & Datenschutz)
   ================================================ */

/* Legal Hero Section */
.legal-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.legal-hero .hero-background .hero-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.legal-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.legal-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.legal-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.9);
}

.privacy-hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.privacy-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 500;
}

/* Legal Content Section */
.legal-content-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.legal-main-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.legal-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.legal-card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.legal-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legal-info-item:hover {
    background: #f0f0f0;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.05rem;
    color: var(--dark-color);
    line-height: 1.5;
}

.info-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--secondary-color);
}

/* Legal Sidebar */
.legal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.legal-sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.legal-sidebar-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.12);
}

.sidebar-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.legal-sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-sidebar-card p {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Legal Terms Section */
.legal-terms-section {
    padding: 80px 20px;
    background: white;
}

.legal-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 1rem;
}

.legal-terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.legal-term-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.legal-term-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.1);
}

.term-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.legal-term-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.legal-term-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-term-card p:last-child {
    margin-bottom: 0;
}

/* Disclaimer Box */
.legal-disclaimer-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.disclaimer-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.disclaimer-note {
    font-size: 0.9rem;
    color: #777;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

/* Legal CTA Section */
.legal-cta-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.legal-cta-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

/* ================================================
   PRIVACY PAGE SPECIFIC STYLES
   ================================================ */

/* Table of Contents */
.privacy-toc-section {
    padding: 0 20px 60px;
    background: #f8f9fa;
    margin-top: -40px;
}

.privacy-toc {
    background: white;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-toc h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toc-item:hover {
    border-color: var(--primary-color);
    background: white;
}

.toc-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.toc-text {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 20px;
    background: white;
}

.privacy-section.alt-bg {
    background: #f8f9fa;
}

.privacy-section-card {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.section-content {
    flex: 1;
}

.section-content h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.section-content .intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-content h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
}

.section-content h3 svg {
    color: var(--primary-color);
}

/* Info Box */
.info-box {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.info-box-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-box-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Privacy List */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.privacy-list.compact li {
    margin-bottom: 0.5rem;
}

.section-content .note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
}

/* Legal Basis Box */
.legal-basis-box {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fc 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.legal-basis-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.legal-basis-box p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Responsible Grid */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.responsible-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.responsible-card:hover {
    border-color: var(--primary-color);
}

.responsible-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.responsible-card.dpo .card-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.responsible-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.responsible-card address {
    font-style: normal;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.responsible-card .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.responsible-card .contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.responsible-card .contact-info a:hover {
    color: var(--secondary-color);
}

/* Data Subsection */
.data-subsection {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.data-subsection:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Cookie Types */
.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.cookie-type.analytics {
    border-left-color: #ffc107;
}

.cookie-type.consent {
    border-left-color: #17a2b8;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cookie-type.analytics .cookie-icon {
    color: #ffc107;
}

.cookie-type.consent .cookie-icon {
    color: #17a2b8;
}

.cookie-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.cookie-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Retention Box */
.retention-box {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
    margin-top: 1.5rem;
}

.retention-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

.retention-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.retention-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.retention-duration {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.retention-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.service-icon.local {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-basis-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.legal-basis-tag.local {
    background: #d4edda;
    color: #155724;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.right-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.right-card:hover {
    border-color: var(--primary-color);
    background: white;
}

.right-card.highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border-color: rgba(196, 30, 58, 0.2);
}

.right-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.right-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.right-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* Security Showcase */
.security-showcase {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 1.5rem;
}

.security-visual {
    text-align: center;
}

.ssl-icon {
    color: #28a745;
    margin-bottom: 1rem;
}

.ssl-badge {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
}

.ssl-badge .https {
    color: #28a745;
    font-weight: 600;
}

.ssl-badge .lock {
    font-size: 1.2rem;
}

.security-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

.security-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.security-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #555;
}

.security-features li svg {
    color: #28a745;
    flex-shrink: 0;
}

/* Spam Warning Box */
.spam-warning-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-top: 1.5rem;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.warning-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.warning-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.warning-note {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Legal Pages Responsive */
@media (max-width: 1023px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .legal-terms-grid {
        grid-template-columns: 1fr;
    }

    .responsible-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .security-showcase {
        flex-direction: column;
        text-align: center;
    }

    .security-info h3 {
        justify-content: center;
    }

    .security-features {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .legal-hero {
        min-height: 40vh;
        padding: 120px 20px 60px;
    }

    .legal-content-section,
    .legal-terms-section,
    .privacy-section,
    .legal-cta-section {
        padding: 60px 20px;
    }

    .legal-main-card {
        padding: 25px;
    }

    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-disclaimer-box {
        flex-direction: column;
    }

    .legal-cta-card {
        flex-direction: column;
        text-align: center;
    }

    .privacy-toc {
        padding: 25px 20px;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .privacy-section-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .spam-warning-box {
        flex-direction: column;
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .retention-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    .privacy-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .legal-hero-title {
        font-size: 2rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .cookie-type {
        flex-direction: column;
        text-align: center;
    }

    .cookie-icon {
        margin: 0 auto;
    }
}
