:root {
    --bg-color: rgb(24, 23, 23);
    --text-color: #ffffff;
    --accent-color: #179ad7;
    --silver-color: #b0b0b0;
    --card-bg: #1c1c1c;
    --shadow: rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: "Cinzel", "Noto Sans JP", sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: #121212;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    max-height: 120px;
}

.logo img {
    width: 120px;
    border-radius: 100px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.banner img {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow);
}

.three-phrases {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #121212;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.three-phrases div {
    flex: 1;
    font-weight: bold;
    color: var(--accent-color);
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}
.contact-info{
  color: #000;
}
.section1,
.banner-cards {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #333;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.section h3 {
    font-size: 1.2rem;
    color: var(--silver-color);
    margin-bottom: 20px;
}

.section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.section ul {
    list-style: inside disc;
    color: var(--silver-color);
    padding-left: 20px;
    text-align: left;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    margin: 30px auto 10px;
    transition: background-color 0.3s ease;
}

s .cta-button:hover {
    background-color: #0f7ab0;
}

.banner-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px var(--shadow);
    flex: 1;
    min-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px var(--shadow);
}

.card h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .three-phrases,
    .banner-cards {
        flex-direction: column;
        gap: 20px;
    }
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.steps {
    flex: 1;
    min-width: 300px;
    margin-top: 120px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.donate {
    background-color: gray;
    margin: 20px;
    border-radius: 30px;
}

.step-number {
    background-color: #004b91;
    color: white;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    margin-right: 15px;
    font-size: 18px;
}

.step-content h3 {
    margin: 0 0 8px 0;
}

.step-content p {
    margin: 0;
    color: #333;
}

.step-content a {
    font-size: 14px;
    margin-left: 10px;
    color: #004b91;
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.image-section img {
    max-width: 100%;
    border-radius: 5px;
}

.buttons {
    text-align: center;
    margin-top: 30px;
}

.donate-button {
    background-color: #004b91;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.donate-button:hover {
    background-color: #003a70;
}

.stand-link {
    color: rgb(5, 42, 90);
    display: block;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
}

.stand-link:hover {
    text-decoration: underline;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    background-color: #002d5c;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #004080;
}

/* Estilo del submenu */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    padding: 12px 16px;
    color: #002d5c;
    font-weight: normal;
}

.dropdown li a:hover {
    background-color: #f2f2f2;
}

/* Mostrar submenu al pasar el mouse */
nav ul li:hover>.dropdown {
    display: block;
}
/* Contenedor principal */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
  }
  
  /* Título principal */
  .section h2 {
    font-size: 32px;
    color: #002d5c;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Subtítulos (pasos 1, 2, 3...) */
  .section h3 {
    font-size: 22px;
    margin-top: 40px;
    color: #004080;
  }
  
  /* Párrafos comunes */
  .section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
  }
  
  /* Listas */
  .section ul {
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
  .section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
    position: relative;
    padding-left: 10px;
  }
  
  .section ul li::before {
    content: "•";
    color: #005fa3;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  /* Enlaces */
  .section a {
    color: #005fa3;
    text-decoration: underline;
  }
  
  .section a:hover {
    text-decoration: none;
  }
  .elementor-element{
    margin-top: 20px;
  }
  /* Contenedor general */
.section-form {
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 960px;
    margin: 20px auto;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
  }
  
  .form-container p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
  }
  
  /* Estructura general */
  .custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Filas con múltiples columnas */
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
  }
  
  /* Etiquetas */
  label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #002d5c;
  }
  
  /* Inputs y selects */
  input,
  select {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
    transition: border-color 0.2s ease;
  }
  
  input:focus,
  select:focus {
    border-color: #005fa3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 95, 163, 0.15);
  }
  
  /* Checkbox */
  input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
  }
  
  /* Botón */
  .sli-button {
    background-color: #0f205a;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .sli-button:hover {
    background-color: #6c6e72;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  }
  .membership-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
  }
  
  .membership-form h2,
  .membership-form h3 {
    text-align: left;
    color: #000;
    margin-bottom: 1rem;
  }
  
  .membership-form input[type="text"],
  .membership-form input[type="email"],
  .membership-form select {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .membership-form input[type="radio"],
  .membership-form input[type="checkbox"] {
    margin-right: 6px;
    margin-bottom: 0.5rem;
  }
  
  .membership-form label {
    display: block;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 0.6rem;
  }
  
  .membership-form button {
    background-color: #e71c23;
    color: #fff;
    padding: 0.8rem;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .membership-form button:hover {
    background-color: #c2181d;
  }
  /* General Section Styling */
.contact-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
  }
  
  .contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  /* Office Info */
  .office-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .office-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .office-info p {
    line-height: 1.6;
    color: #333;
  }
  
  /* Form Styling */
  .contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.06);
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .full-width {
    width: 100%;
  }
  
  label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
  }
  
  input,
  textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
  }
  
  input:focus,
  textarea:focus {
    border-color: #0073e6;
    outline: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  /* Button */
  .submit-button {
    background-color: #e71c23;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .submit-button:hover {
    background-color: #c4171d;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  
    .contact-container {
      gap: 30px;
    }
  
    .office-info {
      text-align: center;
    }
  }
  .section-with-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
  }
  
  .section-with-image .content {
    flex: 1 1 500px;
    max-width: 600px;
  }
  
  .section-with-image .image {
    flex: 1 1 400px;
    max-width: 500px;
  }
  
  .section-with-image .image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  
  .section-with-image.reverse {
    flex-direction: row-reverse;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-with-image,
    .section-with-image.reverse {
      flex-direction: column;
    }
  
    .section-with-image .content,
    .section-with-image .image {
      max-width: 100%;
    }
  }
  .team-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 0;
  }
  
  .team-card {
    text-align: center;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-5px);
  }
  
  .team-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .team-card .name {
    font-weight: bold;
    padding: 10px 0;
    background: #115eb6;
  }
    