
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #ffffff; color: #003366; position: relative; }
.background { background-image: url('assets/bg.jpg'); background-size: cover; background-position: center; opacity: 0.5; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
header { background-color: #003366; color: white; padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo { width: 40px; height: auto; } /* smaller logo */
.button { background-color: white; color: #003366; padding: 10px 20px; text-decoration: none; border-radius: 8px; font-weight: bold; box-shadow: 0 4px 6px rgba(0,0,0,0.2); transition: transform 0.2s ease-in-out; }
.button.secondary { background-color: #ffffff; color: #003366; border: 2px solid #003366; }
.button:hover { transform: scale(1.05); }
main { padding: 20px; max-width: 1000px; margin: 0 auto; background-color: rgba(255,255,255,0.95); }
section { margin-bottom: 24px; }
.intro { display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 20px; }
.intro-text { flex: 1 1 60%; }
.intro-card { flex: 1 1 35%; }
.business-card-img { width: 90%; max-width: 220px; border-radius: 8px; box-shadow: 0 0 6px rgba(0,0,0,0.3); margin-bottom: 10px; }
.contact-me { background-color: #f4f8fc; padding: 10px; border-radius: 8px; box-shadow: 0 0 4px rgba(0,0,0,0.1); font-size: 0.95rem; }
.latam-contacts { margin: 10px 0 30px 0; padding: 12px 14px; background: #f4f8fc; border-left: 4px solid #003366; border-radius: 8px; font-size: 0.98rem; }
.latam-contacts h3 { margin: 0 0 8px 0; color: #003366; }
form input, form textarea { width: 100%; margin-bottom: 10px; padding: 8px; border: 1px solid #003366; border-radius: 4px; }
form input[type='submit'] { background-color: #003366; color: white; border: none; cursor: pointer; }
footer { background-color: #f0f0f0; color: #003366; text-align: center; padding: 15px; font-size: 14px; }
