/* =====================================
   NEUE HERO SECTION - KOMPLETT NEU
   Logo-Farben: Orange #FF7F5C, Navy #1E2139, Blau #4A9FD8
   ===================================== */

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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
    background: #1e2139;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e2139 0%, #2a2d4a 50%, #1e2139 100%);
}

/* ==================== ANIMATED BACKGROUND ==================== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff7f5c, transparent);
    top: -150px;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4a9fd8, transparent);
    bottom: -200px;
    left: -100px;
    animation-delay: 7s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff9a7c, transparent);
    top: 40%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float-shapes {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.2;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.1;
    }
}

/* ==================== HERO WRAPPER ==================== */
.hero-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* ==================== HERO LEFT (CONTENT) ==================== */
.hero-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 45px;
    letter-spacing: -1.5px;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9a7c 50%, #4a9fd8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 10px;
}

.gradient-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #ff7f5c, transparent);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60%;
    }
}

/* ==================== HERO ACTIONS (BUTTONS) ==================== */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.hero-btn:hover::before {
    transform: translateX(0);
}

.hero-btn span,
.hero-btn i {
    position: relative;
    z-index: 1;
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Primary Button */
.hero-btn.primary {
    background: linear-gradient(135deg, #ff7f5c 0%, #ff9a7c 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(255, 127, 92, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 127, 92, 0.6);
}

/* Secondary Button */
.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(74, 159, 216, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(74, 159, 216, 0.3);
}

/* ==================== HERO RIGHT (IMAGE) ==================== */
.hero-right {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-8deg);
    transition: all 0.5s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover .hero-image {
    transform: scale(1.05);
}

.image-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.2) 0%,
        rgba(74, 159, 216, 0.2) 100%
    );
    pointer-events: none;
}

/* Decorative Elements */
.deco-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 127, 92, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.dot-1 {
    top: -10px;
    right: 10%;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 15%;
    left: -10px;
    animation-delay: 1s;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.deco-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(74, 159, 216, 0.3);
    border-radius: 50%;
    top: -30px;
    left: -30px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==================== SCROLL DOWN ==================== */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s ease-out 1s both;
    z-index: 20;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.scroll-down:hover .scroll-icon {
    border-color: #ff7f5c;
}

.scroll-icon i {
    color: #ff7f5c;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-8px);
        opacity: 0;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Large Desktop */
@media (max-width: 1400px) {
    .hero-wrapper {
        gap: 60px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-section {
        padding: 90px 30px 70px;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-wrapper {
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 968px) {
    .hero-section {
        min-height: auto;
        padding: 80px 30px 60px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-left {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-heading {
        font-size: 3rem;
        margin-bottom: 35px;
    }

    .hero-actions {
        justify-content: center;
    }

    .image-frame {
        transform: perspective(1000px) rotateY(0deg);
    }

    .deco-circle {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 70px 20px 50px;
    }

    .hero-heading {
        font-size: 2.3rem;
        margin-bottom: 30px;
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: 1.05rem;
    }

    .bg-shape {
        display: none;
    }

    .deco-dot {
        display: none;
    }

    .image-frame {
        border-radius: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px 40px;
        min-height: 75vh;
    }

    .hero-heading {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 16px 28px;
        font-size: 1rem;
        gap: 10px;
    }

    .scroll-down {
        bottom: 25px;
        font-size: 0.8rem;
    }

    .scroll-icon {
        width: 26px;
        height: 45px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .hero-background,
    .deco-dot,
    .deco-circle,
    .scroll-down {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .image-frame {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* =====================================
   AUSBILDUNG SECTIONS - KOMPLETT
   Logo-Farben: Orange #FF7F5C, Navy #1E2139, Blau #4A9FD8
   ===================================== */

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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: #f8f9fa;
    color: #1e2139;
    line-height: 1.6;
}

/* ==================== INFO SECTION (Kurze Infos) ==================== */
.info-section {
    padding: 100px 40px;
    background: white;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 127, 92, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.1),
        rgba(74, 159, 216, 0.1)
    );
    color: #ff7f5c;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 127, 92, 0.2);
}

.info-badge i {
    font-size: 1.1rem;
}

.info-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1e2139;
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}
.info-card:nth-child(2) {
    animation-delay: 0.2s;
}
.info-card:nth-child(3) {
    animation-delay: 0.3s;
}
.info-card:nth-child(4) {
    animation-delay: 0.4s;
}
.info-card:nth-child(5) {
    animation-delay: 0.5s;
}
.info-card:nth-child(6) {
    animation-delay: 0.6s;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #ff7f5c;
    box-shadow: 0 20px 50px rgba(255, 127, 92, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 127, 92, 0.4);
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e2139;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ==================== AUSBILDUNG SECTION ==================== */
.ausbildung-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.ausbildung-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1e2139;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e2139 0%, #ff7f5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== FEATURED CARD (Vollbreite) ==================== */
.featured-ausbildung {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ausbildung-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.ausbildung-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(255, 127, 92, 0.2);
    border-color: rgba(255, 127, 92, 0.3);
}

/* ==================== AUSBILDUNG GRID (Zwei Cards) ==================== */
.ausbildung-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.ausbildung-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.ausbildung-grid .ausbildung-card:nth-child(1) {
    animation-delay: 0.3s;
}
.ausbildung-grid .ausbildung-card:nth-child(2) {
    animation-delay: 0.4s;
}

.ausbildung-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 127, 92, 0.3);
}

/* ==================== IMAGE WRAPPER ==================== */
.ausbildung-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.ausbildung-card.featured .ausbildung-image-wrapper {
    height: 100%;
}

.ausbildung-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ausbildung-card:hover .ausbildung-image {
    transform: scale(1.08);
}

.image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(30, 33, 57, 0.8), transparent);
}

/* ==================== BADGES ==================== */
.ausbildung-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    z-index: 10;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-blue {
    background: rgba(74, 159, 216, 0.95);
    color: white;
}

.badge-orange {
    background: rgba(255, 127, 92, 0.95);
    color: white;
}

.badge-purple {
    background: rgba(139, 92, 246, 0.95);
    color: white;
}

/* ==================== CONTENT ==================== */
.ausbildung-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-wrapper {
    margin-bottom: 30px;
}

.ausbildung-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e2139;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    font-size: 2rem;
}

.ausbildung-description {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ==================== TAGS ==================== */
.ausbildung-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.1),
        rgba(74, 159, 216, 0.1)
    );
    color: #1e2139;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 127, 92, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: #ff7f5c;
    color: white;
    border-color: #ff7f5c;
    transform: translateY(-2px);
}

.tag i {
    font-size: 0.85rem;
    color: #10b981;
}

.tag:hover i {
    color: white;
}

/* ==================== FOOTER (Buttons) ==================== */
.ausbildung-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ausbildung-btn {
    flex: 1;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 127, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 127, 92, 0.5);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: white;
    color: #ff7f5c;
    border: 2px solid #ff7f5c;
}

.btn-secondary:hover {
    background: #ff7f5c;
    color: white;
    transform: translateY(-3px);
}

/* ==================== MORE OFFERS BUTTON ==================== */
.more-offers-container {
    text-align: center;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.more-offers-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #1e2139, #2a2d4a);
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(30, 33, 57, 0.3);
}

.more-offers-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 33, 57, 0.5);
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
}

.more-offers-btn i {
    transition: transform 0.3s ease;
}

.more-offers-btn:hover i {
    transform: translateX(8px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .info-section,
    .ausbildung-section {
        padding: 80px 30px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .ausbildung-card.featured {
        grid-template-columns: 1fr;
    }

    .ausbildung-card.featured .ausbildung-image-wrapper {
        height: 400px;
    }

    .ausbildung-grid {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .info-section,
    .ausbildung-section {
        padding: 60px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 30px 25px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
    }

    .info-icon i {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .ausbildung-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ausbildung-content {
        padding: 30px;
    }

    .ausbildung-title {
        font-size: 1.5rem;
    }

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

    .ausbildung-btn {
        width: 100%;
    }

    .more-offers-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .info-section,
    .ausbildung-section {
        padding: 50px 15px;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    .ausbildung-image-wrapper {
        height: 250px;
    }

    .ausbildung-card.featured .ausbildung-image-wrapper {
        height: 300px;
    }

    .ausbildung-content {
        padding: 25px 20px;
    }

    .ausbildung-title {
        font-size: 1.3rem;
    }

    .ausbildung-description {
        font-size: 1rem;
    }

    .ausbildung-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* =====================================
   JOBS SECTION - ANDERES DESIGN
   Logo-Farben: Orange #FF7F5C, Navy #1E2139, Blau #4A9FD8
   ===================================== */

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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: #f8f9fa;
    color: #1e2139;
    line-height: 1.6;
}

/* ==================== JOBS INFO SECTION ==================== */
.jobs-info-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1e2139 0%, #2a2d4a 100%);
    position: relative;
    overflow: hidden;
}

.jobs-info-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 127, 92, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.jobs-info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side */
.info-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.jobs-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 127, 92, 0.2);
    backdrop-filter: blur(10px);
    color: #ff7f5c;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 127, 92, 0.3);
}

.jobs-badge i {
    font-size: 1.1rem;
}

.jobs-info-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient {
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jobs-info-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Right Side */
.info-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: start;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 127, 92, 0.4);
    transform: translateX(10px);
}

.benefit-number {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ff7f5c;
    line-height: 1;
    min-width: 50px;
}

.benefit-content h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ==================== JOBS SECTION ==================== */
.jobs-section {
    padding: 100px 40px;
    background: white;
}

.jobs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.jobs-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jobs-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1e2139;
    margin-bottom: 20px;
}

.jobs-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== JOBS GRID ==================== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.job-card:nth-child(1) {
    animation-delay: 0.1s;
}
.job-card:nth-child(2) {
    animation-delay: 0.2s;
}
.job-card:nth-child(3) {
    animation-delay: 0.3s;
}
.job-card:nth-child(4) {
    animation-delay: 0.4s;
}

.job-card:hover {
    border-color: #ff7f5c;
    box-shadow: 0 15px 50px rgba(255, 127, 92, 0.15);
    transform: translateY(-8px);
}

/* ==================== JOB HEADER ==================== */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.job-card:hover .job-icon {
    transform: scale(1.1) rotate(-5deg);
}

.job-icon i {
    font-size: 1.6rem;
    color: white;
}

.job-icon.blue {
    background: linear-gradient(135deg, #4a9fd8, #6bb3e6);
}

.job-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.job-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* Status Badges */
.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.urgent {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status-badge.popular {
    background: rgba(74, 159, 216, 0.1);
    color: #4a9fd8;
}

.status-badge.new {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* ==================== JOB CONTENT ==================== */
.job-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e2139;
    margin-bottom: 15px;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.meta-item i {
    color: #ff7f5c;
    font-size: 0.85rem;
}

.job-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ==================== JOB HIGHLIGHTS ==================== */
.job-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(
        135deg,
        rgba(255, 127, 92, 0.08),
        rgba(74, 159, 216, 0.08)
    );
    color: #1e2139;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 127, 92, 0.15);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: #ff7f5c;
    color: white;
    border-color: #ff7f5c;
    transform: translateY(-2px);
}

.highlight i {
    font-size: 0.75rem;
    color: #10b981;
}

.highlight:hover i {
    color: white;
}

/* ==================== JOB FOOTER (Buttons) ==================== */
.job-footer {
    display: flex;
    gap: 12px;
}

.job-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.job-btn.primary {
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 127, 92, 0.3);
}

.job-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 127, 92, 0.5);
}

.job-btn.primary i {
    transition: transform 0.3s ease;
}

.job-btn.primary:hover i {
    transform: translateX(5px);
}

.job-btn.secondary {
    background: transparent;
    color: #ff7f5c;
    border: 2px solid #ff7f5c;
}

.job-btn.secondary:hover {
    background: #ff7f5c;
    color: white;
    transform: translateY(-3px);
}

/* ==================== ALL JOBS BUTTON ==================== */
.all-jobs-container {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.all-jobs-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #1e2139, #2a2d4a);
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(30, 33, 57, 0.3);
}

.all-jobs-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 33, 57, 0.5);
    background: linear-gradient(135deg, #ff7f5c, #ff9a7c);
}

.all-jobs-btn i {
    transition: transform 0.3s ease;
}

.all-jobs-btn:hover i {
    transform: translateX(8px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .jobs-info-section,
    .jobs-section {
        padding: 80px 30px;
    }

    .jobs-info-wrapper {
        gap: 60px;
    }

    .jobs-grid {
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .jobs-info-section,
    .jobs-section {
        padding: 60px 20px;
    }

    .jobs-info-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .jobs-header {
        margin-bottom: 50px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .job-card {
        padding: 25px;
    }

    .job-header {
        flex-direction: column;
        gap: 15px;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

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

    .job-btn {
        width: 100%;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-number {
        font-size: 1.5rem;
        min-width: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .jobs-info-section,
    .jobs-section {
        padding: 50px 15px;
    }

    .jobs-info-title {
        font-size: 2rem;
    }

    .jobs-info-text {
        font-size: 1rem;
    }

    .job-card {
        padding: 20px;
    }

    .job-icon {
        width: 50px;
        height: 50px;
    }

    .job-icon i {
        font-size: 1.3rem;
    }

    .job-title {
        font-size: 1.3rem;
    }

    .job-description {
        font-size: 0.95rem;
    }

    .job-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .all-jobs-btn {
        padding: 18px 40px;
        font-size: 1rem;
    }
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    padding: 40px 20px;
}

/* Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ea7a5a 0%, #f4a583 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(234, 122, 90, 0.3);
}

.section-icon i {
    font-size: 35px;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    color: #1e1e3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: #5b8fb9;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid #ea7a5a;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 122, 90, 0.2);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1;
}

.card-title {
    font-size: 1.5rem;
    color: #1e1e3f;
    margin-bottom: 20px;
    font-weight: 600;
}

.card-list {
    list-style: none;
    margin-bottom: 25px;
}

.card-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ea7a5a;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Button */
.btn-more {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ea7a5a 0%, #f4a583 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 122, 90, 0.3);
}

.btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 122, 90, 0.4);
    background: linear-gradient(135deg, #f4a583 0%, #ea7a5a 100%);
}

.btn-more i {
    margin-left: 8px;
}

/* Benefits Container - Modern Card Layout */
.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(234, 122, 90, 0.2);
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ea7a5a 0%, #f4a583 100%);
}

.benefit-image {
    flex: 0 0 200px;
    background: linear-gradient(135deg, #ea7a5a 0%, #f4a583 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.benefit-image::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.benefit-image i {
    font-size: 80px;
    color: white;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.benefit-content {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ea7a5a 0%, #f4a583 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-small i {
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    color: #1e1e3f;
    font-weight: 700;
    margin: 0;
}

.benefit-text {
    color: #5b8fb9;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    font-size: 0.95rem;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    background: #fff5f2;
    transform: translateX(5px);
}

.benefit-list li i {
    color: #ea7a5a;
    font-size: 16px;
    flex-shrink: 0;
}

/* Responsive Design */

/* Extra Large Devices (Large Desktops, 1400px and up) */
@media (min-width: 1400px) {
    .content-section,
    .benefits-section {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.2rem;
    }
}

/* Large Devices (Desktops, 992px to 1199px) */
@media (max-width: 1199px) {
    .content-section,
    .benefits-section {
        max-width: 960px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {
    body {
        padding: 30px 20px;
    }

    .content-section,
    .benefits-section {
        max-width: 720px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .section-icon {
        width: 70px;
        height: 70px;
    }

    .section-icon i {
        font-size: 30px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .info-card {
        padding: 30px;
    }

    .card-number {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }

    /* Benefits Cards Tablet */
    .benefit-card {
        flex-direction: column;
    }

    .benefit-image {
        flex: 0 0 150px;
        width: 100%;
    }

    .benefit-image i {
        font-size: 60px;
    }

    .benefit-content {
        padding: 30px;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }
}

/* Small Devices (Landscape Phones, 576px to 767px) */
@media (max-width: 767px) {
    body {
        padding: 20px 15px;
    }

    .content-section {
        margin-bottom: 60px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

    .section-icon i {
        font-size: 26px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 25px;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding-right: 50px;
    }

    .card-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .card-list {
        margin-bottom: 20px;
    }

    .card-list li {
        font-size: 0.95rem;
        padding: 6px 0;
    }

    .btn-more {
        padding: 10px 25px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .benefits-section {
        padding: 40px 20px;
        border-radius: 15px;
    }

    /* Benefits Cards Mobile */
    .benefit-card {
        flex-direction: column;
    }

    .benefit-image {
        flex: 0 0 120px;
        width: 100%;
    }

    .benefit-image i {
        font-size: 50px;
    }

    .benefit-content {
        padding: 25px 20px;
    }

    .benefit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .benefit-icon-small {
        width: 45px;
        height: 45px;
    }

    .benefit-icon-small i {
        font-size: 20px;
    }

    .benefit-title {
        font-size: 1.3rem;
    }

    .benefit-text {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .benefit-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit-list li {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575px) {
    body {
        padding: 15px 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .section-icon {
        width: 55px;
        height: 55px;
    }

    .section-icon i {
        font-size: 24px;
    }

    .info-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-number {
        font-size: 1.8rem;
    }

    .card-list li {
        font-size: 0.9rem;
    }

    .benefits-section {
        padding: 30px 15px;
    }

    .benefits-container {
        gap: 20px;
    }

    .benefit-card::before {
        width: 4px;
    }

    .benefit-image {
        flex: 0 0 100px;
    }

    .benefit-image i {
        font-size: 40px;
    }

    .benefit-content {
        padding: 20px 15px;
    }

    .benefit-title {
        font-size: 1.2rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    .benefit-list li {
        font-size: 0.85rem;
        padding: 7px 8px;
    }

    .benefit-list li i {
        font-size: 14px;
    }
}

/* Very Small Devices (Small Phones, less than 400px) */
@media (max-width: 399px) {
    .section-title {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-list li {
        font-size: 0.85rem;
        padding-left: 20px;
    }

    .btn-more {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-text {
        font-size: 0.85rem;
    }

    .benefit-list li {
        font-size: 0.8rem;
    }
}
