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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Asap', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container con padding esteso per sezioni principali */
.section .container,
.qurakaare-linkedin .container,
.qurakaare-disclaimer .container,
.qurakaare-footer .container {
    max-width: 1310px;
    padding: 0 80px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center items */
    font-family: 'Asap', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #004B9B;
    text-decoration: none;
}

#logo-img {
    height: 60px; /* Set a fixed height */
    margin-right: 10px; /* Space between logo and text */
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #004B9B;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #004B9B;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #004B9B;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1;
    border-top: 3px solid #004B9B;
    animation: fadeIn 0.2s ease-out;
    min-width: 100%;
    text-align: center;
}

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

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    display: block;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: #f4f7f9;
}

.dropdown-content a::after {
    display: none;
}

.language-switcher .dropdown-content {
    min-width: 100%;
    text-align: center;
}

.language-switcher .dropdown-content a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9em;
}

.language-switcher .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #004B9B;
}

.flag-icon-custom {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

/* Responsive styles for mobile */
@media (max-width: 992px) {
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
    }

    .hamburger {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.75) 0%, rgba(0, 82, 163, 0.75) 100%), url('../img/Hero_Banner.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px 0 60px 0;
}

.hero .container {
    width: 100%;
    z-index: 1;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: #fff;
    color: #0066cc;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background: #fff;
    color: #0066cc;
}

.btn-light:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0066cc;
}

.section-title.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #666;
    text-align: center;
}

.subsection-title {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subsection-title.orange {
    color: #EE7D00;
}

.subsection-title.blue {
    color: #005CA9;
}

.family-note {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    margin-top: 30px;
    font-style: italic;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.content-text {
    padding: 0;
}

.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.service-card {
    background: #fff;
    padding: 18px 12px;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.service-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 11px;
}

.service-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 9px;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card.orange .service-title {
    color: #EE7D00;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Target Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.target-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.target-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.target-title {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: #0066cc;
}

.target-description {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    opacity: 0.2;
    margin-bottom: 10px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0066cc;
}

.benefit-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Section Backgrounds */
.section-intro {
    background: #f8f9fa;
    padding: 60px 0 !important;
}

.section-services {
    background: #fff;
}

.section-target {
    background: #f8f9fa;
}

.section-benefits {
    background: #fff;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.privacy-link-wrapper {
    margin-top: 25px;
}

.privacy-link {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Grid System Bootstrap-like */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6,
.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* LinkedIn Section */
.qurakaare-linkedin {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.qurakaare-linkedin .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.linkedin-text {
    font-family: 'Asap', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    color: #004995;
    margin: 0;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #004995;
    color: #ffffff;
    font-family: 'Asap', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-linkedin:hover {
    background-color: #003670;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-linkedin img {
    width: 20px;
    height: 20px;
}

/* Disclaimer Section */
.qurakaare-disclaimer {
    background-color: #004C99;
    padding: 35px 80px;
}

.qurakaare-disclaimer .container {
    max-width: 1400px;
    padding: 0;
}

.disclaimer-text {
    font-family: 'Asap', Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    text-align: left;
    margin: 0;
}

/* Footer */
.qurakaare-footer {
    background-color: #042A64;
    color: #ffffff;
    padding: 60px 80px 40px;
}

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

.qurakaare-footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    margin-bottom: 50px;
    min-height: 300px;
    gap: 40px;
}

.qurakaare-footer .footer-left {
    max-width: 400px;
}

.qurakaare-footer .footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 30px;
}

.footer-info {
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff;
    display: block;
    gap: 0;
}

.footer-info > div {
    margin-bottom: 0;
}

.footer-info .company-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-info .company-address {
    font-weight: 400;
}

.qurakaare-footer .footer-iso-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    margin-top: 0;
    font-weight: 400;
}

.qurakaare-footer .footer-iso-text .nowrap {
    white-space: nowrap;
}

.qurakaare-footer .footer-center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 90px;
    flex-shrink: 0;
}

.qurakaare-footer .footer-iso-logo {
    width: clamp(140px, 15vw, 220px);
    height: auto;
    display: block;
}

.qurakaare-footer .footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 500px;
    margin-top: 115px;
    justify-self: end;
}

.qurakaare-footer .footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 35px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.qurakaare-footer .footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 35px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-linkedin-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-linkedin-link:hover {
    transform: scale(1.05);
}

.footer-linkedin-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-linkedin-link:hover .footer-linkedin-icon {
    transform: scale(1.1);
}

.footer-copyright {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */

/* Tablet Landscape e Desktop piccoli (992px - 1200px) */
@media (max-width: 1200px) {
    .section .container,
    .qurakaare-linkedin .container,
    .qurakaare-disclaimer .container,
    .qurakaare-footer .container {
        padding: 0 50px;
    }

    .content-grid {
        gap: 80px;
    }

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

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

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

    .footer-links {
        width: 100%;
        max-width: none;
        margin-top: 40px;
    }

    .footer-links .row {
        flex-wrap: nowrap;
        gap: 40px 80px;
    }
}

/* Tablet Portrait (768px - 968px) */
@media (max-width: 968px) {
    .section .container,
    .qurakaare-linkedin .container,
    .qurakaare-disclaimer .container,
    .qurakaare-footer .container {
        padding: 0 30px;
    }

    .header {
        padding: 15px 0;
    }

    .header-content {
        position: relative;
    }

    .logo {
        height: 40px;
    }

    .hamburger {
        display: flex;
        top: 12px;
        right: 30px;
        width: 38px;
        height: 38px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 70px;
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 20px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        font-size: 16px;
        padding: 15px 10px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .language-switcher {
        width: 100%;
    }

    .language-switcher .dropbtn {
        padding: 15px 10px;
        width: 100%;
        justify-content: center;
    }

    .language-switcher .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: #f8f9fa;
    }

    .hero {
        min-height: 100vh;
        padding: 50px 0;
        background-position: 60% center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-title.center {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .subsection-title {
        font-size: 18px;
        margin: 25px 0 15px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    .service-card {
        padding: 15px 10px;
    }

    .service-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }

    .service-title {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .service-description {
        font-size: 13px;
    }

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

    .target-image {
        height: 220px;
    }

    .target-title {
        font-size: 18px;
    }

    .target-description {
        font-size: 14px;
    }

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

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .benefit-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .benefit-description {
        font-size: 14px;
    }

    .family-note {
        font-size: 13px;
        padding: 15px 20px;
        margin-top: 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .qurakaare-footer {
        padding: 40px 40px 30px;
    }

    .qurakaare-footer .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }

    .qurakaare-footer .footer-right {
        width: 100%;
        max-width: none;
        margin-top: 0;
        justify-self: auto;
    }

    .qurakaare-footer .footer-center {
        margin-top: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .qurakaare-footer .footer-iso-logo {
        width: 180px;
    }

    .qurakaare-footer .footer-info {
        font-size: 13px;
    }

    .qurakaare-footer .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .qurakaare-linkedin {
        padding: 50px 0;
    }

    .linkedin-text {
        font-size: 24px;
        line-height: 1.4;
    }

    .btn-linkedin {
        font-size: 16px;
        padding: 10px 24px;
    }

    .disclaimer-text {
        font-size: 11px;
        line-height: 18px;
    }

    .qurakaare-disclaimer {
        padding: 30px 20px;
    }

    .qurakaare-footer {
        padding: 40px 30px 20px;
    }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
    .section .container,
    .qurakaare-linkedin .container,
    .qurakaare-disclaimer .container,
    .qurakaare-footer .container {
        padding: 0 20px;
    }

    .header {
        padding: 12px 0;
    }

    .logo {
        height: 35px;
    }

    .hamburger {
        display: flex;
        top: 10px;
        right: 20px;
        width: 36px;
        height: 36px;
    }

    .hamburger span {
        width: 22px;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-5px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(5px);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 60px;
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 15px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        font-size: 15px;
        padding: 14px 10px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .language-switcher {
        width: 100%;
    }

    .language-switcher .dropbtn {
        padding: 14px 10px;
        width: 100%;
        justify-content: center;
    }

    .language-switcher .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: #f8f9fa;
    }

    .hero {
        min-height: 100vh;
        padding: 40px 0;
        background-position: 60% center;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .section-title.center {
        margin-bottom: 30px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .subsection-title {
        font-size: 16px;
        margin: 20px 0 12px;
    }

    .content-grid {
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .service-card {
        padding: 12px 15px;
    }

    .service-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .service-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .service-description {
        font-size: 11px;
        line-height: 1.4;
    }

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

    .target-image {
        height: 200px;
    }

    .target-title {
        font-size: 18px;
        margin: 15px 15px 8px;
    }

    .target-description {
        font-size: 14px;
        padding: 0 15px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .benefit-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .benefit-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .benefit-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .family-note {
        font-size: 12px;
        padding: 12px 15px;
        margin-top: 15px;
        line-height: 1.6;
    }

    .section-cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .qurakaare-linkedin {
        padding: 40px 0;
    }

    .linkedin-text {
        font-size: 20px;
        line-height: 1.4;
    }

    .btn-linkedin {
        font-size: 15px;
        padding: 10px 20px;
        max-width: 100%;
    }

    .qurakaare-disclaimer {
        padding: 20px 15px;
    }

    .disclaimer-text {
        font-size: 10px;
        line-height: 16px;
    }

    .qurakaare-footer {
        padding: 30px 20px 15px;
    }

    .qurakaare-footer .footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .qurakaare-footer .footer-iso-logo {
        width: 160px;
    }

    .qurakaare-footer .footer-info {
        font-size: 12px;
    }

    .qurakaare-footer .footer-links a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .qurakaare-footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* Mobile Small (max 480px) */
@media (max-width: 480px) {
    .section .container,
    .qurakaare-linkedin .container,
    .qurakaare-disclaimer .container,
    .qurakaare-footer .container {
        padding: 0 15px;
    }

    .logo {
        height: 30px;
    }

    .hamburger {
        display: flex;
        top: 8px;
        right: 15px;
        width: 34px;
        height: 34px;
    }

    .hamburger span {
        width: 20px;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-5px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(5px);
    }

    .nav {
        width: 240px;
        padding-top: 55px;
        z-index: 1001;
    }

    .nav-list {
        padding: 12px;
    }

    .nav-link {
        font-size: 14px;
        padding: 12px 8px;
    }

    .dropdown-content a {
        font-size: 13px;
        padding: 10px 12px;
    }

    .language-switcher .flag-icon {
        width: 18px;
        height: 14px;
    }

    .language-switcher .dropbtn {
        padding: 12px 8px;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 40px 0;
        background-position: 60% center;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .section-title.center {
        margin-bottom: 25px;
    }

    .section-description {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .subsection-title {
        font-size: 15px;
        margin: 18px 0 10px;
    }

    .services-grid {
        gap: 10px;
        margin-bottom: 15px;
    }

    .service-card {
        padding: 10px 12px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }

    .service-title {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .service-description {
        font-size: 12px;
    }

    .target-grid {
        gap: 20px;
    }

    .target-image {
        height: 180px;
    }

    .target-title {
        font-size: 16px;
    }

    .target-description {
        font-size: 13px;
    }

    .benefits-grid {
        gap: 12px;
    }

    .benefit-card {
        padding: 18px 12px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .benefit-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .benefit-description {
        font-size: 13px;
    }

    .family-note {
        font-size: 11px;
        padding: 10px 12px;
        margin-top: 12px;
    }

    .section-cta {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .qurakaare-linkedin {
        padding: 35px 0;
    }

    .linkedin-text {
        font-size: 18px;
        line-height: 1.4;
    }

    .btn-linkedin {
        font-size: 14px;
        padding: 8px 18px;
    }

    .btn-linkedin img {
        width: 18px;
        height: 18px;
    }

    .qurakaare-disclaimer {
        padding: 15px 10px;
    }

    .disclaimer-text {
        font-size: 9px;
        line-height: 14px;
    }

    .qurakaare-footer {
        padding: 25px 15px 12px;
    }

    .footer-logo {
        width: 130px;
    }

    .footer-info {
        font-size: 11px;
    }

    .footer-links a {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-linkedin-link {
        font-size: 12px;
    }

    .footer-linkedin-icon {
        width: 20px;
        height: 20px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}
