@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap");

:root {
  /* Google Pixel 10 XL / Material You Inspired Palette - Light Mode */
  --md-sys-color-background: #f2f2f2; /* Soft grey background */
  --md-sys-color-on-background: #191c20;
  --md-sys-color-surface: #ffffff; /* Clean white surface */
  --md-sys-color-surface-variant: #e1e2e6;
  --md-sys-color-primary: #0b57d0; /* Deep Google Blue */
  --md-sys-color-on-primary: #ffffff;
  --md-sys-color-secondary: #444746;
  --md-sys-color-on-secondary: #ffffff;
  --md-sys-color-outline: #74777f;

  --radius-xl: 48px;
  --radius-lg: 32px;
  --radius-md: 16px;

  --spacing-layout: 24px;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

header {
  margin-bottom: 60px;
  text-align: center;
  animation: fadeInDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #0b57d0 0%, #4285f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--md-sys-color-outline);
  font-weight: 400;
}

.card {
  background-color: var(--md-sys-color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11, 87, 208, 0.1);
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}
.card:nth-child(2) {
  animation-delay: 0.2s;
}
.card:nth-child(3) {
  animation-delay: 0.3s;
}
.card:nth-child(4) {
  animation-delay: 0.4s;
}
.card:nth-child(5) {
  animation-delay: 0.5s;
}

h2 {
  font-size: 1.75rem;
  color: var(--md-sys-color-primary);
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500;
}

p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--md-sys-color-on-background);
}

ul {
  margin-top: 16px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
  color: var(--md-sys-color-secondary);
}

.contact-button {
  display: inline-block;
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  margin-top: 24px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 8px rgba(11, 87, 208, 0.2);
}

.contact-button:hover {
  opacity: 0.95;
  box-shadow: 0 6px 12px rgba(11, 87, 208, 0.3);
}

footer {
  text-align: center;
  margin-top: 80px;
  color: var(--md-sys-color-outline);
  font-size: 0.9rem;
  padding-bottom: 40px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--md-sys-color-background);
}

::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  .card {
    padding: 24px;
    border-radius: var(--radius-md);
  }
}
