:root {
    --primary-blue: #002e5b;
    --secondary-orange: #ff8200;
    --bg-light: #f8f9fa;
    --text-dark: #333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', Arial, sans-serif; color: var(--text-dark); background: #fff; line-height: 1.5; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Top Bar */
.top-bar { background: var(--primary-blue); color: white; padding: 8px 0; font-size: 13px; text-align: right; }
.top-bar span { margin-left: 20px; }

/* Header */
header { background: white; padding: 20px 0; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; letter-spacing: -1px; }
.blue { color: var(--primary-blue); }
.orange { color: var(--secondary-orange); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--primary-blue); font-weight: 600; font-size: 14px; }
.login-link { border: 2px solid var(--primary-blue); padding: 5px 15px; border-radius: 4px; }

/* Hero */
.hero { background-image: url('cena.jpg'); padding: 60px 0; color: white;   /* Center the image */
  background-position: center;

  /* Do not repeat the image */
  background-repeat: no-repeat;

  /* Scale the image to cover the entire container */
  background-size: cover; }
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: center; }
.hero-text h1 { font-size: 42px; margin-bottom: 30px; line-height: 1.1; }
.hero-list { list-style: none; font-size: 18px; }
.hero-list li { margin-bottom: 15px; }
.hero-list i { color: var(--secondary-orange); margin-right: 10px; }

/* Form Card */
.form-card { background: white; border-radius: 8px; padding: 30px; color: var(--text-dark); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.form-card h2 { font-size: 22px; color: var(--primary-blue); margin-bottom: 5px; text-align: center; }
.form-card p { text-align: center; font-size: 14px; margin-bottom: 20px; }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.form-row select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; background: #fff; }
.btn-primary { width: 100%; background: var(--secondary-orange); color: white; border: none; padding: 18px; font-weight: 800; font-size: 16px; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.btn-primary:hover { background: #e67600; transform: translateY(-2px); }
.form-footer { font-size: 11px !important; color: #777; margin-top: 15px; }

/* Steps Section */
.steps { padding: 80px 0; text-align: center; background: var(--bg-light); }
.section-title { font-size: 32px; color: var(--primary-blue); margin-bottom: 50px; position: relative; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-number { background: var(--secondary-orange); color: white; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; margin-bottom: 20px; }
.step-item h3 { margin-bottom: 15px; color: var(--primary-blue); }

/* Benefits Section */
.benefits { padding: 80px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.benefit-card { padding: 30px; border: 1px solid #eee; border-radius: 8px; text-align: center; transition: 0.3s; }
.benefit-card:hover { border-color: var(--secondary-orange); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.benefit-card i { font-size: 40px; color: var(--secondary-orange); margin-bottom: 20px; }
.benefit-card h4 { margin-bottom: 15px; color: var(--primary-blue); }

/* Types of Castros */
.castro-types { background: #f0f4f8; padding: 40px 0; text-align: center; }
.types-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
.type-box { background: white; padding: 15px 25px; border-radius: 30px; font-weight: 600; font-size: 14px; border: 1px solid #ddd; }

/* FAQ */
.faq { padding: 60px 0; background: white; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; font-weight: 600; color: var(--primary-blue); }

/* Footer */
footer { background: #1a1a1a; color: white; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { margin-bottom: 20px; border-bottom: 2px solid var(--secondary-orange); display: inline-block; padding-bottom: 5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #ccc; text-decoration: none; font-size: 14px; }
.footer-col input { padding: 10px; border-radius: 4px; border: none; width: 70%; }
.btn-orange { background: var(--secondary-orange); border: none; padding: 10px 15px; color: white; border-radius: 4px; cursor: pointer; }
.copyright { text-align: center; font-size: 12px; color: #777; border-top: 1px solid #333; padding-top: 20px; }

/* Mobile */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .hero-list { display: inline-block; text-align: left; }
    .steps-grid { grid-template-columns: 1fr; }
}
