/* --- HERO --- */
.about-hero {
    text-align: center;
    padding: 4rem 1rem 2.2rem 1rem;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(255 255 255 / 65%)), url(../images/poop_cover.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 28px 28px;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #1761a0;
    margin-bottom: 1.1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 900;
}

.about-intro {
    font-size: 1.18rem;
    color: #222;
    margin-bottom: 2.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

.about-team-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.about-team-image {
    width: 88px;
    height: 88px;
    object-fit: cover;
    /* border-radius: 50%; */
    /* box-shadow: 0 2px 12px rgba(30,144,255,0.07); */
}

.about-team-name {
    font-weight: 700;
    color: #007bff;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
}

/* --- MISSION --- */
.mission-section {
    max-width: 820px;
    margin: 0 auto 3rem auto;
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    padding: 2.4rem 1.1rem 2.1rem 1.1rem;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: center;
}

.section-overline {
    display: block;
    color: #007bff;
    font-size: 0.99rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    letter-spacing: 0.08em;
}

.mission-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1761a0;
    margin-bottom: 1.1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.mission-section p {
    color: #222;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

/* --- WHY US GRID --- */
.why-us-section {
    background: linear-gradient(90deg, #aee6ef 0%, #7fd7e7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    animation: fadeIn 0.7s;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.why-us-header {
    margin-bottom: 2.5rem;
}
.why-us-overline {
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.3rem;
}
.why-us-section h2 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}
.why-us-subtitle {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem 2rem;
    justify-items: center;
    align-items: start;
}
.why-us-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 240px;
}
.why-us-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}
.why-us-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.07));
}
.why-us-card h4 {
    font-size: 1.13rem;
    font-weight: 700;
    color: #222;
    margin-top: 0.2rem;
    margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
}
.why-us-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* --- SERVICE AREA GRID --- */
.service-areas-section {
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: fadeIn 0.7s;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.service-areas-flex {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service-areas-text {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-areas-text h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #1761a0;
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}
.service-areas-intro {
    color: #5fa8d3;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}
.service-areas-list {
    margin: 0 0 1.1rem 0.2rem;
    padding: 0;
    color: #1761a0;
    font-weight: 600;
    font-size: 1.08rem;
    list-style: none;
}
.service-areas-list li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.7em;
}
.service-areas-list li::before {
    content: "\1F4CD";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.1em;
    top: 0.1em;
}
.service-areas-note {
    color: #7fa7c7;
    font-size: 0.98rem;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
}
.service-areas-note a {
    font-weight: 600;
    transition: color 0.18s;
}
.service-areas-note a:hover {
    color: #ffffff;
}
.service-areas-map {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.service-areas-map iframe {
    width: 100%;
    height: 320px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
    border: 0;
    min-width: 220px;
}
.service-areas-map-note {
    color: #889;
    font-size: 0.93rem;
    margin-top: 0.4rem;
    text-align: center;
}

.service-areas-btn {
    display: inline-block;
    margin-top: 0.7rem;
    background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
    color: #fff;
    border-radius: 28px;
    padding: 0.6em 1.6em;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
    border: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    cursor: pointer;
}
/* --- CTA SZEKCIÓ --- */
.cta-section {
    text-align: center;
    margin: 2.5rem 0 3.5rem 0;
}
.cta-big {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    border-radius: 64px;
    font-weight: 800;
    box-shadow: 0 4px 24px rgba(0, 123, 255, 0.11);
    background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}
.cta-big:hover {
    background: #1761a0;
    color: #fff;
}


/* --- MOBIL RESPONSIVE --- */
@media (max-width: 900px) {
    .why-us-grid, .service-areas-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .why-us-section, .service-areas-section {
        padding: 2rem 0.5rem 1.2rem 0.5rem;
    }
    .why-us-section h2, .service-areas-text h3, .mission-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 700px) {
    .about-hero h1 {
        font-size: 1.55rem;
    }
    .mission-section h2 {
        font-size: 1.12rem;
    }
    .about-intro, .mission-section p {
        font-size: 0.97rem;
    }
    .about-team-image {
        width: 54px;
        height: 54px;
    }
    .cta-big {
        font-size: 1.05rem;
        padding: 0.7rem 1.1rem;
    }
    .service-areas-map iframe {
        height: 180px;
    }
    .service-areas-section, .why-us-section {
        max-width: 99vw;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to   { opacity: 1; transform: translateY(0);}
}
/* Footer Styles */
.footer-edited-by {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-align: center;
    font-weight: 500;
}

.footer-edited-by a,
.footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.18s;
}

.footer-edited-by a:hover,
.footer a:hover {
    color: #ffb347;
}

.footer-social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-social-icon {
    color: #fff;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.18s, transform 0.18s, filter 0.18s;
    text-decoration: none;
    border-radius: 50%;
    padding: 0.2em;
}

.footer-social-icon:hover {
    color: #ffb347;
    filter: drop-shadow(0 2px 8px #ffb347);
    transform: scale(1.13) rotate(-6deg);
}

.footer-socials img {
    display: none !important;
}

#facebook-link {
    text-decoration: none !important;
}

#facebook-link:hover {
    color: #3246b3;
    filter: drop-shadow(0 2px 8px #003cff);
}

#linkedin-link {
    text-decoration: none !important;
}

#linkedin-link:hover {
    color: #0077b5;
    filter: drop-shadow(0 2px 8px #0077b5);
}

#instagram-link {
    text-decoration: none !important;
}

#instagram-link:hover {
    color: #c32aa3;
    filter: drop-shadow(0 2px 8px #c32aa3);
}

#youtube-link {
    text-decoration: none !important;
}

#youtube-link:hover {
    color: #ff0000;
    filter: drop-shadow(0 2px 8px #ff0000);
}

@media (max-width: 800px) {
    .mission-section {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 1200px) {
    .why-us-section {
        margin-left: 10px;
        margin-right: 10px;
    }
    .service-areas-section {
        margin-left: 10px;
        margin-right: 10px;
    }
}