/* Canada 67 Points Calculator Styles - Vishwanta Brand */
:root {
  --points-primary: #ffcc00; /* Vishwanta Gold */
  --points-secondary: #004080; /* Vishwanta Blue */
  --points-accent: #0059b3; /* Bright Blue */
  --points-dark: #002244; /* Dark Navy */
  --points-light: #f8f9fa;
  --points-border: #e0e6ed;
  --points-shadow: rgba(255, 204, 0, 0.1);
  --points-gradient: linear-gradient(135deg, #ffcc00 0%, #004080 100%);
  --points-text: #002244;
  --points-muted: #6c757d;
  --points-success: #28a745;
  --points-warning: #ffcc00;
  --points-danger: #dc3545;
  --points-info: #0059b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--points-text);
  background: var(--points-light);
}

.points-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #002244, #004080, #0059b3);
}

/* Hero Section */
.points-hero {
  background: var(--points-gradient);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.points-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/migrate.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.flag-icon {
  margin-bottom: 1.5rem;
}

.flag-icon img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.points-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  min-width: 150px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Main Layout */
.main-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: -3rem auto 0;
  padding: 0 2rem 4rem;
  position: relative;
  z-index: 3;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.calculator-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border: 1px solid #e3e3e3;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}

/* Custom Scrollbar Styles */
.calculator-card::-webkit-scrollbar {
  width: 8px;
}

.calculator-card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.calculator-card::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  border-radius: 4px;
}

.calculator-card::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-dark));
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-dark));
}

.calculator-card h2 {
  color: var(--points-secondary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--points-secondary);
}

.calculator-card h2 i {
  margin-right: 0.5rem;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  color: var(--points-secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.form-section h3 i {
  margin-right: 0.5rem;
  color: var(--points-secondary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #34495e;
}

.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #bdc3c7;
  border-radius: 8px;
  background: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: var(--points-secondary);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.score-display {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  margin: 2rem 0;
}

.total-score {
  margin-bottom: 1rem;
}

.score-label {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.score-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.score-max {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-left: 0.5rem;
}

.eligibility-status {
  font-size: 1rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  font-weight: 500;
}

.eligibility-status.eligible {
  background: rgba(39,174,96,0.8);
}

.eligibility-status.not-eligible {
  background: rgba(231,76,60,0.8);
}

.apply-btn {
  width: 100%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39,174,96,0.3);
}

.apply-btn i {
  margin-right: 0.5rem;
}

/* Quick Links */
.quick-links {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-links h3 {
  color: var(--points-secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.quick-links ul {
  list-style: none;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.quick-links a {
  color: #34495e;
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.quick-links a:hover {
  background: #f8f9fa;
  color: var(--points-secondary);
  padding-left: 1rem;
}

/* Main Content */
.content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-height: 800px;
}

.info-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #eee;
}

.info-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.info-section h2 {
  color: var(--points-secondary);
  margin-bottom: 2rem;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
}

.info-section h2 i {
  margin-right: 1rem;
  color: var(--points-secondary);
}

/* FSW Intro */
.fsw-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #34495e;
}

.fsw-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid var(--points-secondary);
}

.feature-icon {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-content p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Points Breakdown */
.points-breakdown-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.breakdown-visual {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e3e3e3;
}

.points-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chart-bar {
  flex: 1;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.education-bar { background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.language-bar { background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary)); }
.work-bar { background: linear-gradient(135deg, #f39c12, #e67e22); }
.age-bar { background: linear-gradient(135deg, #3498db, #2980b9); }
.job-bar { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.adapt-bar { background: linear-gradient(135deg, #34495e, #2c3e50); }

.bar-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #34495e;
  min-width: 80px;
}

.breakdown-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.detail-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--points-secondary);
}

.detail-card h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.detail-card h4 i {
  margin-right: 0.5rem;
  color: var(--points-secondary);
}

.detail-card ul {
  list-style: none;
}

.detail-card li {
  padding: 0.3rem 0;
  color: #34495e;
  border-bottom: 1px solid #ecf0f1;
}

.detail-card li:last-child {
  border-bottom: none;
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.requirement-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e3e3e3;
  transition: all 0.3s ease;
}

.requirement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.req-icon {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.requirement-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.requirement-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Improvement Strategies */
.improvement-strategies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.strategy-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--points-secondary);
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.strategy-icon {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.strategy-card h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.strategy-card p {
  color: #7f8c8d;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.strategy-card ul {
  list-style: none;
  margin-bottom: 1rem;
}

.strategy-card li {
  padding: 0.3rem 0;
  color: #34495e;
  position: relative;
  padding-left: 1.5rem;
}

.strategy-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.strategy-tip {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.improvement-cta {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.improvement-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.improvement-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: var(--points-secondary);
  transform: translateY(-2px);
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding-left: 2rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--points-secondary), var(--points-secondary));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
}

.timeline-number {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: -25px;
  z-index: 2;
}

.timeline-content {
  margin-left: 3rem;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--points-secondary);
  flex: 1;
}

.timeline-content h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Success Stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.story-image {
  height: 200px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  padding: 1.5rem;
}

.story-content h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.story-score {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.story-content p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.story-location {
  color: var(--points-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
  color: white;
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content h2 i {
  margin-right: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-whatsapp {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: white;
}

.btn-primary:hover {
  background: white;
  color: var(--points-secondary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.btn-primary i, .btn-whatsapp i {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h3, .footer-section h4 {
  color: var(--points-secondary);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section li {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--points-secondary);
}

.footer-social {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #34495e;
}

.footer-social a {
  color: #bdc3c7;
  font-size: 1.5rem;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--points-secondary);
}

.footer-copy {
  text-align: center;
  color: #95a5a6;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 3rem;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h3 {
  color: var(--points-secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-header .score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.score-circle.eligible {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.score-circle.not-eligible {
  background: linear-gradient(135deg, var(--points-secondary), var(--points-secondary));
}

.modal-body {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-body p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #34495e;
  margin-bottom: 1rem;
}

.recommendation {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--points-secondary);
  text-align: left;
  margin: 1.5rem 0;
}

.recommendation h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.recommendation ul {
  list-style: none;
}

.recommendation li {
  padding: 0.3rem 0;
  color: #34495e;
  position: relative;
  padding-left: 1.5rem;
}

.recommendation li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--points-secondary);
  font-weight: bold;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  color: #aaa;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--points-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sidebar {
    order: 2;
    position: static;
  }
  
  .content {
    order: 1;
  }
  
  .points-breakdown-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .points-hero {
    padding: 3rem 1rem;
  }
  
  .points-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat {
    min-width: 120px;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .main-wrapper {
    padding: 0 1rem 2rem;
    margin-top: -2rem;
  }
  
  .content {
    padding: 2rem 1.5rem;
  }
  
  .info-section h2 {
    font-size: 1.8rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .info-section h2 i {
    margin-bottom: 0.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-whatsapp {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .modal-content {
    padding: 2rem;
    margin: 10% auto;
  }
  
  .timeline-content {
    margin-left: 2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .flag-icon img {
    width: 60px;
  }
  
  .points-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .calculator-card {
    padding: 1.5rem;
  }
  
  .content {
    padding: 1.5rem 1rem;
  }
  
  .info-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  
  .fsw-features {
    grid-template-columns: 1fr;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .improvement-strategies {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculator-card {
  animation: fadeInUp 0.6s ease-out;
}

.info-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
