/* Reset et style de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
  }
  
  :root {
    --primary: #0062F4;
    --secondary: #00D6CB;
    --dark: #051B3B;
    --light: #F0F7FF;
    --white: #FFFFFF;
    --text: #2C3E50;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-dark: linear-gradient(135deg, var(--dark), #163A6E);
    --shadow-soft: 0 10px 30px rgba(5, 27, 59, 0.08);
    --shadow-strong: 0 15px 40px rgba(5, 27, 59, 0.12);
    --radius: 12px;
  }
  
  body {
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Typographie */
  h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 27, 59, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 30px;
  }
  
  nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: var(--secondary);
  }
  
  nav ul li a.active {
    color: var(--secondary);
    font-weight: 600;
  }
  
  .language-selector {
    display: flex;
    align-items: center;
    margin-left: 30px;
    color: var(--white);
  }
  
  .language-selector select {
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    padding: 5px;
    outline: none;
  }
  
  .language-selector select option {
    background: var(--dark);
    color: var(--white);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url('../images/bracelet.png') right center no-repeat;
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  /* Page Hero */
  .page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    text-align: center;
  }
  
  .page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
  }
  
  .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 98, 244, 0.3);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 98, 244, 0.4);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
    margin-left: 15px;
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Sections */
  .section {
    padding: 80px 0;
    position: relative;
  }
  
  .section-light {
    background: var(--light);
  }
  
  .section-dark {
    background: var(--dark);
    color: var(--white);
  }
  
  .section-white {
    background: var(--white);
  }
  
  /* Product Display */
  .product-display {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
  }
  
  .product-image {
    flex: 1;
    min-width: 300px;
  }
  
  .product-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    transition: transform 0.5s ease;
  }
  
  .product-image img:hover {
    transform: scale(1.02);
  }
  
  .product-details {
    flex: 1;
    min-width: 300px;
  }
  
  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
  }
  
  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  /* Stats */
  .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin: 40px 0;
  }
  
  .stat-item {
    margin: 20px;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
  
  /* Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  /* Testimonials */
  .testimonials {
    max-width: 800px;
    margin: 40px auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
  }
  
  .testimonial {
    margin-bottom: 40px;
  }
  
  .testimonial:last-child {
    margin-bottom: 0;
  }
  
  .testimonial-text {
    font-style: italic;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
  }
  
  .testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
  }
  
  .testimonial-author {
    font-weight: 600;
  }
  
  .testimonial-role {
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  /* CTA Section */
  .cta-section {
    text-align: center;
    padding: 80px 0;
  }
  
  /* Contact Form */
  .contact-form {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: left;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(5, 27, 59, 0.1);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 98, 244, 0.1);
  }
  
  .form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(5, 27, 59, 0.1);
    border-radius: var(--radius);
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
  }
  
  .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 98, 244, 0.1);
  }
  
  .form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(5, 27, 59, 0.1);
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 98, 244, 0.1);
  }
  
  /* Technology Section */
  .tech-showcase {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin: 40px 0;
  }
  
  .tech-content {
    flex: 1;
    min-width: 300px;
  }
  
  .tech-image {
    flex: 1;
    min-width: 300px;
  }
  
  .tech-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
  }
/* Version avec hauteur fixe pour aligner toutes les images */
.use-case-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px; /* Un peu plus que la hauteur de l'image */
    margin-bottom: 20px;
}

.use-case-image img[src*="use-cases"] {
    width: 200px;
    height: 200px;
    object-fit: contain;
}
  /* Steps */
  .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
    position: relative;
  }
  
  .steps-container::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: var(--gradient-primary);
    width: 80%;
    z-index: 1;
  }
  
  .step {
    width: 200px;
    margin: 0 20px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-soft);
  }
  
  .step-title {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  /* Use Cases */
  .use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .use-case-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
  }
  
  .use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .use-case-image {
    height: 180px;
    overflow: hidden;
  }
  
  .use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .use-case-card:hover .use-case-image img {
    transform: scale(1.05);
  }
  
  .use-case-content {
    padding: 25px;
  }
  
  .use-case-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  /* Data Table */
  .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .data-table th,
  .data-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(5, 27, 59, 0.1);
  }
  
  .data-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
  }
  
  .data-table tr:last-child td {
    border-bottom: none;
  }
  
  .data-table tr:nth-child(even) {
    background-color: rgba(240, 247, 255, 0.5);
  }
  
  /* Benefits List */
  .benefits-list {
    list-style: none;
    margin: 30px 0;
  }
  
  .benefit-item {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
  }
  
  .benefit-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 25px;
    height: 25px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
  }
  
  /* Tabs */
  .tabs {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
    max-width: 600px;
  }
  
  .tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(5, 27, 59, 0.1);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .tab:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
  }
  
  .tab:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  
  .tab.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-soft);
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  /* Reasons */
  .reasons-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .reason-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
  }
  
  .reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .reason-number {
    font-size: 2rem;
    font-weight: 800;
    margin-right: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
  }
  
  .reason-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  /* Timeline */
  .timeline {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 3px;
    background: var(--gradient-primary);
  }
  
  .timeline-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 70px;
  }
  
  .timeline-item::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
  }
  
  .timeline-date {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow-soft);
  }
  
  /* Story Section */
  .story-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin: 40px 0;
  }
  
  .story-content {
    flex: 1;
    min-width: 300px;
  }
  
  .story-image {
    flex: 1;
    min-width: 300px;
  }
  
  .story-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
  }
  
  /* Team Section */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .team-image {
    height: 250px;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-content {
    padding: 25px;
  }
  
  .team-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  /* Values Section */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
  }
  
  .value-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  /* Partners Section */
  .partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
  }
  
  .partner-logo {
    background: var(--white);
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    color: var(--dark);
    transition: all 0.3s ease;
  }
  
  .partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
  }
  
  /* Achievements List */
  .achievements-list {
    list-style: none;
    margin: 30px 0;
  }
  
  .achievement-item {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
  }
  
  .achievement-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 25px;
    height: 25px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
  }
  
  /* Contact Section */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
  }
  
  .contact-form-container {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-info-container {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
  }
  
  .contact-info-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .contact-info-content {
    line-height: 1.8;
  }
  
  .contact-info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-info-content a:hover {
    text-decoration: underline;
  }
  
  /* Map Container */
  .map-container {
    margin-top: 25px;
    height: 250px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
  }
  
  /* Footer */
  footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--secondary);
  }
  
  .copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Responsive design */
  @media (max-width: 992px) {
    .header-content {
      flex-direction: column;
      text-align: center;
    }
    
    nav ul {
      margin-top: 20px;
    }
    
    nav ul li {
      margin: 0 15px;
    }
    
    .language-selector {
      margin: 20px 0 0;
    }
    
    .hero {
      text-align: center;
    }
    
    .hero-content {
      max-width: 100%;
    }
    
    .product-display {
      flex-direction: column;
      text-align: center;
    }
    
    .tech-showcase {
      flex-direction: column;
    }
    
    .steps-container::before {
      display: none;
    }
    
    .reason-card {
      flex-direction: column;
    }
    
    .reason-number {
      margin-right: 0;
      margin-bottom: 10px;
    }
    
    .story-container {
      flex-direction: column-reverse;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .section {
      padding: 60px 0;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .use-cases {
      grid-template-columns: 1fr;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
    }
    
    .btn-outline {
      margin-left: 0;
      margin-top: 15px;
    }
    
    .tab {
      padding: 10px 5px;
      font-size: 0.9rem;
    }
    
    .team-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .values-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 2.2rem;
    }
    
    .btn {
      display: block;
      width: 100%;
    }
    
    nav ul {
      flex-direction: column;
    }
    
    nav ul li {
      margin: 10px 0;
    }
    
    .team-grid {
      grid-template-columns: 1fr;
    }
  }