:root {
    --dark-blue: #0d1524;
    --blue: #12192d;
    --yellow: #f1c24e;
    --yellow-hover: #ffd664;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
}

body {
    font-family: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-blue);
    color: var(--text-white);
}

.rolunk-hero {
    background-color: var(--dark-blue);
    color: var(--text-white);
    padding: 150px 10px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.rolunk-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rolunk-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    line-height: 1.6;
}

.evocode-highlight {
    color: var(--yellow);
}

.cta-button {
    background-color: var(--yellow);
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(241, 194, 78, 0.3);
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .rolunk-title {
        font-size: 30px;
        margin-top: 30px;
    }
    
    .rolunk-subtitle {
        font-size: 18px;
        padding: 0 15px;
        margin-bottom: -5px;
    }
    
    .rolunk-hero {
        padding: 70px 15px;
    }
}
 /* intro szekció stílusok */
.rolunk-intro {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: var(--text-white);
    margin-top: -8rem;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 0 0 45%;
    max-width: 800px;
}

.office-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 21, 36, 0.9), transparent);
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    max-width: 800px;
}

.intro-content {
    flex: 1;
}

.intro-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.lightbulb-icon {
    margin-right: 10px;
    font-size: 28px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Reszponzív beállítások */
@media (max-width: 992px) {
    .intro-flex-container {
        flex-direction: column;
    }
    
    .image-container {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .rolunk-intro {
        padding: 40px 0;
    }
    
    .intro-title {
        font-size: 22px;
    }
    
    .intro-text {
        font-size: 15px;
    }
    
    .image-caption {
        font-size: 16px;
        padding: 10px;
    }
}

    /* Harmadik szekció stílusai */
    .rolunk-services {
        background-color: var(--dark-blue);
        padding: 80px 0;
        color: var(--text-white);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .services-title {
        text-align: center;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 60px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .service-card {
        background-color: #18202c;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        color: #333;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(241, 194, 78, 0.2);
    }
    
    .service-icon {
        background-color: rgba(241, 194, 78, 0.15);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--yellow);
    }
    
    .service-name {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }
    
    .service-description {
        font-size: 16px;
        line-height: 1.6;
        color: #666;
    }
    
    /* Reszponzív beállítások */
    @media (max-width: 992px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .services-title {
            font-size: 30px;
            margin-bottom: 40px;
        }
        
        .service-card {
            padding: 25px;
        }
    }

    /* Szakértelem és tapasztalat szekció */
.expertise-section {
    padding: 5rem 0;
    background-color: #0d1524;
}

.expertise-header {
    margin-bottom: 2rem;
    text-align: center;
}

.expertise-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e2b93b;
    margin-bottom: 0.5rem;
}

.expertise-subtitle {
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.expertise-icon {
    display: inline-block;
    color: #666;
    margin-right: 0.5rem;
}

.expertise-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-card {
    background-color: #19212c;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(241, 194, 78, 0.2);
}

.card-content {
    
    flex: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2b93b;
    margin-bottom: 1rem;
}

.card-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.card-description p {
    margin-bottom: 0.75rem;
}

.card-description p:last-child {
    margin-bottom: 0;
}

.card-image {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-icon {
    width: 100px;
    height: 100px;
    background-color: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
}

.fingerprint-icon {
    width: 100px;
    height: 100px;
    background-color: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
}

.card-reverse {
    flex-direction: row-reverse;
}

.card-reverse .card-content {
    padding-left: 0;
    padding-right: 2rem;
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .expertise-card, .card-reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .card-image {
        margin-bottom: 1.5rem;
    }
    
    .card-reverse .card-content {
        padding-right: 0;
    }
}
/* Közös változók */
:root {
    --dark-blue: #0d1524;
    --blue: #12192d;
    --yellow: #f1c24e;
    --yellow-hover: #ffd664;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
}

/* Közös szekció stílusok */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.evocode-highlight {
    color: var(--yellow);
}

/* Folyamat szekció stílusok */
.process-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: var(--text-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-icon {
    background-color: rgba(241, 194, 78, 0.15);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--yellow);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Miért minket szekció stílusok */
.why-us-section {
    background-color: var(--blue);
    padding: 80px 0;
    color: var(--text-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-us-card {
    background-color: rgba(25, 33, 44, 0.7);
    border-radius: 10px;
    padding: 30px;
    border-top: 4px solid var(--yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(241, 194, 78, 0.2);
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--yellow);
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Reszponzív beállítások */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section, .why-us-section {
        padding: 60px 0;
    }
}

.evocode-highlight {
    color: var(--yellow);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.evocode-highlight {
    color: var(--yellow);
}

/* Fenntarthatóság és Innováció szekció */
.sustainability-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: var(--text-white);
}

.sustainability-content {
    background: linear-gradient(to bottom right, #1a2333, #141f30);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sustainability-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sustainability-text {
    flex: 2;
}

.sustainability-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.sustainability-icon-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sustainability-icon-bg {
    background-color: rgba(241, 194, 78, 0.1);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sustainability-icon {
    color: var(--yellow);
    font-size: 80px;
}

/* Elkötelezettség szekció */
.dedication-block {
    background-color: #0c1423;
    padding: 90px 0;
    color: var(--text-white);
}

.block-heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.heading-icon {
    margin-right: 10px;
    font-size: 2rem;
}

.dedication-wrapper {
    background-color: #161e2b;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    padding: 50px;
    margin-top: 35px;
    max-width: 1500px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dedication-paragraph {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.action-wrapper {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#online-almok {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}


.slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


      /* Animációk */
      .fade-in {
        opacity: 0;
        animation: fadeIn 1s ease forwards;
    }

    .delay-100 {
        animation-delay: 0.1s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Reszponzív beállítások */
    @media (max-width: 992px) {
        .sustainability-flex {
            flex-direction: column;
        }

        .sustainability-icon-container {
            order: -1;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 30px;
        }

        .sustainability-content,
        .commitment-content {
            padding: 25px;
        }

        .sustainability-text p,
        .commitment-text {
            font-size: 16px;
        }

        .sustainability-icon-bg {
            width: 140px;
            height: 140px;
        }

        .sustainability-icon {
            font-size: 60px;
        }
    }
