:root{
  --rt-blue:#1D3557;
  --rt-green:#2ECC71;
  --rt-blue-acc:#2F6AA3;
  --rt-text:#1f2937;
  --rt-muted:#f5f5f5;
  --rt-border:#e5e7eb;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Lato',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
  color:var(--rt-text); background:#fff;
}

.rt-container{max-width:1100px;margin:0 auto;padding:0 20px}

.rt-header{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--rt-border);z-index:20}
.rt-header .rt-container{display:flex;align-items:center;justify-content:space-between;height:64px}
.rt-logo{display:flex;align-items:center;gap:10px;color:var(--rt-blue);font-weight:700;text-decoration:none}
.rt-logo img{filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1))}
.rt-logo.light{color:#fff}
.rt-nav .rt-btn--ghost{border:1px solid var(--rt-border);padding:10px 14px;border-radius:12px;color:var(--rt-blue);text-decoration:none;font-weight:600}

.rt-hero{
  background: linear-gradient(120deg, #1D3557 0%, #2F6AA3 100%);
  color:#fff; padding:48px 0 64px;
}
.rt-hero-grid{display:grid;grid-template-columns:1fr;gap:24px;align-items:center}
.rt-hero-logo{text-align:center;margin-bottom:20px}
.rt-hero-logo img{filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); max-width: 100%}
.rt-hero-copy h1{font-family:'Poppins',sans-serif;font-size:34px;line-height:1.15;margin:0 0 12px}
.rt-highlight{color:#d4f8e8}
.rt-lead{font-size:18px;opacity:.95;margin:0 0 16px}
.rt-hero-icons{list-style:none;padding:0;margin:16px 0 0;display:grid;gap:10px}
.rt-hero-icons li{display:flex;align-items:center;gap:10px}
.rt-hero-icons i{width:20px;height:20px}

.rt-card{background:#fff;color:var(--rt-text);border-radius:16px;padding:20px 20px 18px;box-shadow:0 10px 30px rgba(0,0,0,.12)}
.rt-form-title{font-family:'Poppins',sans-serif;font-size:20px;margin:0 0 6px;color:var(--rt-blue)}
.rt-form-sub{margin:0 0 12px;color:#4b5563}
.rt-field input{
  width:100%;padding:14px 16px;border:1px solid var(--rt-border);
  border-radius:12px;font-size:16px;outline:none
}
.rt-consent{display:flex;gap:8px;align-items:flex-start;font-size:13px;color:#4b5563;margin:6px 0 8px}
.rt-btn{display:inline-block;border:0;border-radius:14px;padding:14px 18px;font-weight:700;font-family:'Poppins',sans-serif;cursor:pointer;text-decoration:none;font-size:16px}
.rt-btn--primary{background:var(--rt-green);color:#fff}
.rt-card .rt-btn--primary{display:block;width:100%;text-align:center}
.rt-small{font-size:13px}
.muted{color:#6b7280}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.rt-section{padding:56px 0}
.rt-section--muted{background:var(--rt-muted)}
.rt-benefits{display:grid;grid-template-columns:1fr;gap:24px}
.rt-benefit{
  background:#fff;
  border:1px solid var(--rt-border);
  border-radius:16px;
  padding:28px 24px;
  display:grid;
  gap:12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.rt-benefit:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.rt-icon{
  background: linear-gradient(135deg, var(--rt-blue), var(--rt-blue-acc));
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.rt-icon i{width:24px;height:24px;color:#fff;stroke:#fff;stroke-width:2}

.rt-center{text-align:center;font-family:'Poppins',sans-serif}
.rt-steps{display:grid;grid-template-columns:1fr;gap:20px;margin-top:18px}
.rt-step{
  background:#fff;
  border:1px solid var(--rt-border);
  border-radius:16px;
  padding:28px 24px;
  display:grid;
  gap:12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.rt-step:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.rt-step-icon{
  background: linear-gradient(135deg, var(--rt-green), #27ae60);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.rt-step-icon i{width:24px;height:24px;color:#fff}

.rt-cta{background:var(--rt-blue);color:#fff;padding:48px 0;text-align:center}
.rt-cta .rt-btn{margin-top:8px}

.rt-footer{background:#0f1f36;color:#c7d2fe;padding:18px 0}
.rt-footer-grid{display:flex;align-items:center;justify-content:space-between}
.rt-footer a{color:#e5e7eb;text-decoration:none}
.rt-footer a:hover{text-decoration:underline}

/* Privacy page styles */
.rt-privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.rt-privacy-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: var(--rt-blue);
  margin-bottom: 8px;
}

.rt-privacy-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: var(--rt-blue);
  margin: 32px 0 16px;
  border-bottom: 2px solid var(--rt-border);
  padding-bottom: 8px;
}

.rt-privacy-section {
  margin-bottom: 24px;
}

.rt-privacy-section p {
  margin-bottom: 12px;
}

.rt-privacy-section ul {
  margin: 12px 0;
  padding-left: 24px;
}

.rt-privacy-section li {
  margin-bottom: 8px;
}

.rt-privacy-actions {
  margin-top: 48px;
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .rt-privacy-content h1 {
    font-size: 28px;
  }
  
  .rt-privacy-content h2 {
    font-size: 20px;
  }
  
  .rt-privacy-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Contact page styles */
.rt-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--rt-blue);
}

.rt-field select,
.rt-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rt-border);
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
  resize: vertical;
}

.rt-field select:focus,
.rt-field textarea:focus,
.rt-field input:focus {
  border-color: var(--rt-blue);
  box-shadow: 0 0 0 3px rgba(29, 53, 87, 0.1);
}

.rt-contact-info {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}

.rt-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rt-contact-item h4 {
  margin: 0 0 4px;
  color: var(--rt-blue);
  font-family: 'Poppins', sans-serif;
}

.rt-contact-item p {
  margin: 0;
}

.rt-contact-item a {
  color: var(--rt-blue);
  text-decoration: none;
  font-weight: 600;
}

.rt-contact-item a:hover {
  text-decoration: underline;
}

.rt-faq {
  display: grid;
  gap: 20px;
  margin-top: 16px;
}

.rt-faq-item {
  padding: 20px;
  background: var(--rt-muted);
  border-radius: 12px;
  border-left: 4px solid var(--rt-blue);
}

.rt-faq-item h4 {
  margin: 0 0 8px;
  color: var(--rt-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.rt-faq-item p {
  margin: 0;
  line-height: 1.5;
}

.rt-faq-item a {
  color: var(--rt-blue);
  text-decoration: none;
  font-weight: 600;
}

.rt-faq-item a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .rt-contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Form help */
.rt-form-help{
  text-align:center;
  margin:12px 0 0;
  font-size:14px;
  color:#6b7280;
}
.rt-form-help a{
  color:var(--rt-blue);
  text-decoration:none;
}
.rt-form-help a:hover{
  text-decoration:underline;
}

/* Desktop/tablet */
@media (min-width: 820px){
  .rt-hero-grid{grid-template-columns: 1fr 1.1fr; gap: 36px}
  .rt-hero-copy h1{font-size:44px}
  .rt-hero-logo{margin-bottom:24px}
  .rt-hero-logo img{width:320px;height:75px}
  .rt-benefits{grid-template-columns:repeat(3,1fr)}
  .rt-steps{grid-template-columns:repeat(3,1fr)}
}
