/* Navigation */
nav {
    background-color: #2c3e50; /* Dark blue */
    color: white;
    text-align: center;
    padding: 20px;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin: 0 15px;
    transition: color 0.3s ease; /* Smooth transition */
  }
  nav a:hover {
    color: #3498db; /* Light blue */
  }
  
  /* Header */
  header {
    background-color: #3498db; /* Light blue */
    color: white;
    text-align: center;
    padding: 50px 0;
    animation: fadeInDown 1s ease; /* Animation */
  }
  header h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

  /* France description */
  .france-description {
    background-color: #f2f2f2; /* Light gray */
    padding: 50px 20px;
    text-align: center;
  }
  .france-description h2 {
    color: #e74c3c; /* Red */
    font-size: 36px;
    margin-bottom: 20px;
  }
  .france-description p {
    font-size: 18px;
  }

        .firstsection {
            padding: 50px 0;
            text-align: center;
        }

        .text-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease; /* Animation */
        }

        .text-box h1 {
            color: #3498db;
            font-size: 36px;
            margin-bottom: 20px;
        }

        .text-box p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .text-box strong {
            font-size: 20px;
            color: #e67e22;
        }

        .text-box ul {
            padding: 0;
            margin-top: 20px;
        }

        .text-box ul li {
            list-style: none;
            font-size: 16px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .text-box ul li:before {
            content: "\2022"; /* Bullet point */
            color: #e67e22; /* Orange */
            font-size: 20px;
            margin-right: 10px;
        }

        footer {
            background-color: #34495e;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            animation: fadeInUp 1s ease; /* Animation */
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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