.r7-section {
 background: #f8f9fc;
 font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
 padding: 3rem 0;
}

.r7-card {
 background: #ffffff;
 border-radius: 20px !important;
 border: 1px solid #e9edf2;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
 transition: transform 0.2s ease, box-shadow 0.2s ease;
 padding: 1.75rem 1.5rem !important;
 height: 100%;
 min-height: 280px;
 position: relative;
 overflow: hidden;
}

.r7-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
 border-color: #d0d7e2;
}

.r7-icon-wrapper {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 flex-shrink: 0;
}

.r7-icon {
 width: 48px;
 height: 48px;
 object-fit: contain;
 display: block;
}

.r7-title {
 font-weight: 700;
 font-size: 1.1rem;
 color: #0b1a2b;
 margin-bottom: 0.75rem;
 line-height: 1.3;
 letter-spacing: -0.01em;
}

.r7-desc {
 color: #3d4e66;
 font-size: 0.9rem;
 line-height: 1.6;
 margin-bottom: 1.25rem;
 flex: 1 1 auto;
}

.r7-links {
 display: flex;
 flex-direction: column;
 gap: 0.25rem;
 margin-top: auto;
}

.r7-link {
 font-weight: 600;
 font-size: 0.9rem;
 color: #0b1a2b;
 text-decoration: none;
 transition: color 0.15s ease, gap 0.15s ease;
 display: inline-flex;
 align-items: center;
 gap: 0.3rem;
 align-self: flex-start;
 letter-spacing: 0.01em;
 border-bottom: 2px solid transparent;
 padding-bottom: 0.1rem;
}

.r7-link:hover {
 color: #000;
 gap: 0.7rem;
 border-bottom-color: #1e1e1e;
}

.r7-link-secondary {
 font-weight: 400;
 font-size: 0.85rem;
 color: #5a6e85;
 border-bottom: none;
}

.r7-link-secondary:hover {
 color: #0b1a2b;
 gap: 0.5rem;
 border-bottom: none;
}

.r7-card:hover .r7-icon {
 transform: scale(1.05);
 transition: transform 0.2s ease;
}

@media (max-width: 992px) {
 .r7-card {
  min-height: 260px;
  padding: 1.5rem 1.25rem !important;
 }
 .r7-title {
  font-size: 1rem;
 }
 .r7-icon {
  width: 42px;
  height: 42px;
 }
}

@media (max-width: 768px) {
 .r7-card {
  min-height: 240px;
  padding: 1.25rem 1.25rem !important;
  border-radius: 16px !important;
 }
 .r7-title {
  font-size: 0.95rem;
 }
 .r7-desc {
  font-size: 0.85rem;
 }
 .r7-icon {
  width: 38px;
  height: 38px;
 }
 .r7-link {
  font-size: 0.85rem;
 }
 .r7-link-secondary {
  font-size: 0.8rem;
 }
}

@media (max-width: 576px) {
 .r7-section {
  padding: 2rem 0;
 }
 .r7-card {
  min-height: 200px;
  padding: 1rem 1rem !important;
  border-radius: 14px !important;
 }
 .r7-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
 }
 .r7-desc {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
 }
 .r7-icon {
  width: 32px;
  height: 32px;
 }
 .r7-icon-wrapper {
  margin-bottom: 0.75rem !important;
 }
 .r7-link {
  font-size: 0.8rem;
 }
 .r7-link-secondary {
  font-size: 0.75rem;
 }
}