:root {

    
  --color-primary:       #0a60c9;        /* Main brand blue – good contrast */
  --color-primary-dark:  #05347f;        /* Deeper for headers/backgrounds */
  --color-primary-extradark:#001f4d;        /* Very dark – footer/extradark */
  --color-primary-light: #4a92e8;        /* Lighter hover/active */
  --color-primary-extralight:#e8f0fd;       /* Very light bg/tint */
    --color-accent-old: #4FC3F7;
    --color-contact: #0a5a6f;

    /* Accents – Warm for CTAs/alerts (gold/orange family – modern 2026 trend) */
  --color-accent:        #e89c00;        /* Warm gold – better than old #D49009 */
  --color-accent-warm-light:  #ffb733;        /* Lighter variant */
  --color-accent-warm:   #e89c00;        /* Alias for consistency */

/* Neutrals */
--color-text-dark:     #1a1f36;        /* Darker, more readable than #262626 */
--color-text-light:    #5a6275;        /* Secondary text */
--color-text-lighter:  #8a919f;
--color-bg:            #ffffff;
--color-bg-light:      #f8fafc;
--color-bg-tint:       #f0f4f8;
--color-border:        #d1dbe7;
--color-border-light:  #e2e8f0;


    --color-cards: #E9EEF9;
    --color-button: #0A61C9;
    --color-button-light: #4FC3F7;
    --color-button-hover: #2196F3;
    --color-text-dark: #1F2121;
    --color-text-light: #44546A;
    --color-bg-white: #FFFFFF;
    --color-border: #E0E0E0;
    --color-dark: #1F2121;
    --color-light: #FCF8F9;
    --color-gray: #777C7C;
    --color-text: #262626;

    --font-family-old: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
/* Typography & spacing */
--font-family:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--font-family-heading: var(--font-family); /* or add a display font later */



    --space-4:   0.25rem;
    --space-8:   0.5rem;
    --space-12:  0.75rem;
    --space-16:  1rem;
    --space-24:  1.5rem;
    --space-32:  2rem;
    --space-40:  2.5rem;
    --space-48:  3rem;
  
    /* Transitions */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text);
    background: #ffffff;
}
body-2 {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    line-height: 1.6;
    background: var(--color-bg-white);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-32);
}
.container2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
header {
    background: var(--color-primary);
    color: white;
    padding: var(--space-8) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--color-primary-dark);
}
 
  .eu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--color-primary-dark);
    padding: 6px 14px;      /* bigger pill */
    border-radius: 999px;
    font-size: 16px;        /* bigger text */
    font-weight: 600;
  }
  .eu-badge-link {
    text-decoration: none;
  }
  .eu-badge-text {
    letter-spacing: 0.5px;
    color: var(--color-primary-extradark);
  }
  
  .eu-flag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
.eu-flag-icon {
    width: auto;   /* or 18px/20px if you want bigger */
    height: 18px;  /* keeps the original rectangle shape */
    display: block;
    border-radius: 2px; /* optional slight rounding */
  }
  .eu-flag-icon svg,
  .eu-flag-icon jpg {
    height: 18px;      /* or 16px, 18px – your choice */
    width: auto;        /* keeps original aspect ratio */
    border-radius: 3px; /* optional: slightly rounded corners */
  }
  

.cta-header {
    background: transparent;
    color: white;
    padding: 8px 40px;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
}

.cta-header:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}
/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark)  100%);
    color: white;
    padding: 80px var(--space-32);
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--space-24);
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    margin: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.stat-number {
    color: var(--color-accent-warm-light);
    font-size: 24px;
    display: block;
    font-weight: 700;
}

.btn-dark {
    background: var(--color-button);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(9, 169, 158, 0.3);
}
.btn-dark:hover {
    background: var(--color-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(9, 169, 158, 0.4);
}

.btn-light {
    background: var(--color-button-hover);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(9, 169, 158, 0.3);
}
.btn-light:hover {
    background: var(--color-button);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(9, 169, 158, 0.4);
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);
}
.section-header h2 {
    font-size: 36px;
    margin-bottom: var(--space-16);
    color: var(--color-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto;
}







.card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-16);
    font-size: 18px;
}

.card p {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.8;
}


/* FRAMEWORK SECTION */

.framework-section {
    padding-top: 6rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 3rem;
    padding: 60px 0;

}
.framework {
    padding: 80px var(--space-32);
}

.framework-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.framework-text h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-24);
    font-size: 28px;
}

.framework-list {
    list-style: none;
}

.framework-list li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    color: var(--color-text);
    font-size: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.framework-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
}

.framework-visual {
    background: white;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.framework-visual h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-24);
    font-size: 20px;
}

.phases {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.phase {
    flex: 1;
    padding: 20px;
    background: var(--color-light);
    border-radius: 6px;
    border: 1px solid var(--color-accent);
}

.phase-label {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.phase-items {
    font-size: 12px;
    color: var(--color-gray);
    line-height: 1.6;
}




/* Services Section Styles */
.services-section {
    padding-top: 6rem;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 3rem;
    padding: 60px 0;

}

/* Services Section Styles */
.policy-section {
    padding-top: 6rem;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 3rem;
    padding: 60px 0;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 0;
}
.service-card {
    background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid var(--color-accent-warm);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0,0, 0.1);
}

.service-card p {
    text-align: left;
    font-size: 28px;
    line-height: 1.8;
}

/* NEW: icon + title on one line */
.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.service-icon {
    font-size: 24px;
    color: var(--color-primary);
    margin-top: 2px;
}
.service-card h3 {
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.service-card p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}






/* PACKAGE SECTION */
.packages-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: var(--color-bg-light);
    padding: 60px 0;
}

  

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

  /* Cards */
.packages-card {
    background-color: var(--color-bg);
    border-color: var(--color-primary);
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1),
      0 10px 10px -5px rgba(15, 23, 42, 0.04);
    border-width: 1px;
    border-style: solid;
    position: relative;
    border-color: var(--color-primary);

  }


  /* "Most Popular" badge */
  .packages-card-popular .packages-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
  }
  
   /* Cards */



/* Titles */
.packages-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  /* List */
  .packages-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }
  
  .packages-list li + li {
    margin-top: 0.75rem;
  }
  
  /* Buttons */
  .packages-button {
    display: block;
    width: 100%;
    color: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 150ms ease, box-shadow 150ms ease,
      transform 150ms ease;
    text-decoration: none;
  }
  
  /* Footer */
  .section-footer {
    text-align: center;
    margin-top: 2rem;
    width: 100%;

  }
  
  .section-addons {
    font-size: 1.125rem;
    margin: 0 auto 1rem auto; /* center the box itself */
    max-width: 850px;
    text-align: center;
  }
  
  /* CTA button */
  .packages-cta {
    display: inline-block;
    background-image: linear-gradient(to right, #2563eb, #7c3aed);
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow 150ms ease, transform 150ms ease;
  }
  
  .packages-cta:hover {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.2),
      0 10px 10px -5px rgba(15, 23, 42, 0.1);
  }

  .tier-badge {
    margin-top: 20px;              /* Space above the badge */
    padding: 8px 16px;
    border-radius: 20px;           /* Pill shape */
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
    background-color: var(--color-bd);  
    color:  var(--color-primary);
    border-color: var(--color-primary); /* Light blue */
  }
  

  
  /* Optional: Make it stand out more on hover */
  .packages-card:hover .tier-badge {
    transform: scale(1.05);
    transition: transform 0.2s ease;
  }

#hero,
#services,
#framework,
#packages {
  scroll-margin-top: 10px; /* height of sticky header + a bit of spacing */
}




/* Contact section */
.contact-section {
    padding-top: 4rem;
    padding-bottom: 3rem;
    background-color: var(--color-primary-dark); /* approx gray-900 → gray-800 [web:24][web:27] */
    color: #ffffff;
  }
  
  /* Container */
  .contact-container {
    max-width: 42rem; /* similar to max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
  
  /* Heading & text */
  .contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .contact-title {
      font-size: 3rem;
    }
  }
  
  .contact-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
  }
  
  /* Card */
  .contact-card {
    background-color: rgba(255, 255, 255, 0.1); /* white/10 [web:22] */
    backdrop-filter: blur(24px); /* similar to backdrop-blur-xl [web:28] */
    border-radius: 1.5rem;
    padding: 3rem;
  }
  
  /* Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  .hidden {
    display: none;
  }

  .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  
  /* Inputs & textarea */
  .contact-input,
  .contact-textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 0;
    color: #ffffff;
    font: inherit;
    outline: none;
  }
  
  .contact-input::placeholder,
  .contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Focus ring */
  .contact-input:focus,
  .contact-textarea:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.7); /* approx ring-blue-500 [web:27] */
  }
  
  /* Button */
  .contact-button {
    width: 100%;
    background-color: var(--color-button-light);
    color: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: box-shadow 150ms ease, transform 150ms ease;
  }
  
  .contact-button:hover {
    background-color: var(--color-button-hover);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.2),
      0 10px 10px -5px rgba(15, 23, 42, 0.1);
  }
  
  /* Footer text */
  .contact-footer {
    margin-top: 2rem;
    font-size: 0.875rem;
    opacity: 0.75;
  }
  
/* FOOTER */
footer {
    background: var(--color-primary-extradark);
    color: white;
    padding: var(--space-32);
    text-align: center;
}

footer-2 {
    background: var(--color-text-dark);
    color: white;
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    opacity: 0.8;
}


.footer-content {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-content a:link,
.footer-content a:visited {
  color: #ffffff;
  text-decoration: none;
}

.footer-content a:hover,
.footer-content a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.privacy p,
.privacy li,
.privacy address {
  font-size: 0.95rem;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-16);
    }

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

    .hero {
        padding: 60px var(--space-16);
    }

    .section-header h2 {
        font-size: 28px;
    }
    .section-title {
        font-size: 28px;
    }

    .profile-cards {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

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

    .phases {
        flex-direction: column;
    }

    .cta-final h2 {
        font-size: 28px;
    }

    .header-content {
        flex-direction: column;
        gap: var(--space-16);
    }

    .logo {
        font-size: 20px;
    }

    .profile-grid,
    .problems-grid,
    .packages-grid,
    .services-grid,
    .framework-grid,
    .partner-grid,
    .credibility-grid {
        grid-template-columns: 1fr;
    }


    .cta-heading {
        font-size: 24px;
    }

    #services,
    #framework,
    #packages {
      scroll-margin-top: 60px; /* height of sticky header + a bit of spacing */
    }
    
    #contact {
      scroll-margin-top: 50px; /* height of sticky header + a bit of spacing */
    }
    #hero    {
        scroll-margin-top: 20px; /* height of sticky header + a bit of spacing */
      }
  }










/* CTA SECTIONPAge 2*/
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0A5C6E 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    background: var(--color-button-light);
    color: var(--color-text-dark);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--color-button-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 144, 9, 0.3);
}

.cta-subtext {
    font-size: 13px;
    margin-top: 16px;
    opacity: 0.8;
}


/* PROFILE SECTION */
.profile {
    padding: 80px var(--space-32);
    background: #f9f9f9;
}


.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.problem-card {
    background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid var(--color-accent-warm);
}

.problem-card h3 {
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}





/* SOLUTIONS SECTION */
.solutions {
    padding: 80px var(--space-32);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.solution-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.solution-box:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(1, 108, 128, 0.15);
}

.solution-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: var(--space-16);
    font-size: 18px;
}

.solution-box h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-16);
    font-size: 18px;
}

.challenge {
    background: #f5f5f5;
    padding: var(--space-16);
    border-radius: 6px;
    margin-bottom: var(--space-16);
    border-left: 3px solid #ff6b6b;
}

.challenge-label {
    font-weight: 600;
    color: #c92a2a;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.challenge-text {
    color: var(--color-text);
    font-size: 14px;
}

.solution-features {
    list-style: none;
    margin-top: var(--space-24);
}

.solution-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.6;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 16px;
}

/* PILLARS SECTION */
.pillars {
    padding: 80px var(--space-32);
    background: linear-gradient(135deg, rgba(1, 108, 128, 0.05) 0%, rgba(9, 169, 158, 0.05) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: var(--space-16);
}

.pillar h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-8);
}

.pillar p {
    color: var(--color-gray);
    font-size: 14px;
}

/* CTA SECTION */
.cta-final {
    padding: 80px var(--space-32);
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a5a6f 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: var(--space-24);
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-section-buttons {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #077d8f;
    transform: translateY(-2px);
}




.impact-highlight {
    background: linear-gradient(135deg, rgba(1, 108, 128, 0.1), rgba(9, 169, 158, 0.1));
    border-left: 3px solid var(--color-primary-light);
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}



/* RECRUITMENT PROFESSIONAL PROFILE */
.profile-section {
    background: linear-gradient(to bottom, rgba(1, 108, 128, 0.05), transparent);
    padding: 60px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.profile-text h3 {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 16px;
}

.profile-text ul {
    list-style: none;
    padding-left: 0;
}

.profile-text li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--color-text-light);
    font-size: 15px;
}

.profile-text li:before {
    content: "▸";
    color: var(--color-primary-light);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
}

.profile-card {
    background: var(--color-bg-white);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 32px;
}
.profile-cards1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.profile-card h4 {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.profile-card h4:before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-accent-warm);
    border-radius: 50%;
    margin-right: 12px;
}

/* PARTNERS SECTION */
.partners-section {
    background: var(--color-bg-light);
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}



.partner-card {
    background: var(--color-bg-white);
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(1, 108, 128, 0.15);
}

.partner-name {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.partner-title {
    font-size: 13px;
    color: var(--color-accent-warm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.partner-expertise {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.partner-owns {
    background: linear-gradient(135deg, rgba(1, 108, 128, 0.08), rgba(9, 169, 158, 0.08));
    padding: 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    border-left: 3px solid var(--color-primary-light);
}




/* SYNERGY SECTION */
.synergy-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0A5C6E 100%);
    color: white;
    padding: 60px 0;
}

.synergy-title {
    color: white;
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.synergy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.synergy-item {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 24px;
    border-radius: 10px;
    text-align: center;
}

.synergy-item h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-accent-warm-light);
    font-weight: 700;
}

.synergy-item p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
}

/* PROOF & CREDIBILITY */
.credibility-section {
    padding: 60px 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.credibility-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

.credibility-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 16px;
    flex-shrink: 0;
}

.credibility-text h4 {
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.credibility-text p {
    color: var(--color-text-light);
    font-size: 14px;
}




