/* Base Variables */
:root {
  /* Triadic Color Scheme */
  --primary: #3273dc;
  --primary-dark: #2c65c0;
  --primary-light: #4a89e8;
  --secondary: #dc3273;
  --secondary-dark: #c02c65;
  --secondary-light: #e84a89;
  --tertiary: #73dc32;
  --tertiary-dark: #65c02c;
  --tertiary-light: #89e84a;
  
  /* Neutral Colors */
  --dark: #222222;
  --dark-medium: #444444;
  --medium: #666666;
  --light-medium: #888888;
  --light: #f5f5f5;
  --white: #ffffff;
  
  /* Shadow Colors */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --overlay-dark: rgba(0, 0, 0, 0.5);
  
  /* Font Families */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Global Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
  color: var(--dark-medium);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Neomorphic Elements */
.neomorph-box {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  padding: 2rem;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.neomorph-box:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
}

.neomorph-input, 
.neomorph-textarea {
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  transition: box-shadow var(--transition-fast);
  margin-bottom: 1.5rem;
}

.neomorph-input:focus, 
.neomorph-textarea:focus {
  outline: none;
  box-shadow: 
    inset 6px 6px 10px var(--shadow-dark),
    inset -6px -6px 10px var(--shadow-light),
    0 0 0 3px rgba(50, 115, 220, 0.3);
}

.neomorph-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 
    5px 5px 10px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.neomorph-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    7px 7px 14px var(--shadow-dark),
    -7px -7px 14px var(--shadow-light);
}

.neomorph-button:active {
  transform: translateY(0);
  box-shadow: 
    inset 3px 3px 6px var(--shadow-dark),
    inset -3px -3px 6px var(--shadow-light);
}

/* Button Styles */
.button {
  border-radius: 10px;
  font-weight: 600;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button.is-primary {
  background-color: var(--primary);
  color: var(--white);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(50, 115, 220, 0.4);
}

.button.is-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(220, 50, 115, 0.4);
}

.button.is-light {
  background-color: var(--white);
  color: var(--dark);
  border: 1px solid var(--light-medium);
}

.button.is-light:hover {
  background-color: var(--light);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Brutalist Elements */
.brutalist-box {
  background: var(--white);
  border: 3px solid var(--dark);
  box-shadow: 8px 8px 0 var(--dark);
  transform: rotate(-1deg);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  padding: 2rem;
}

.brutalist-box:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: 12px 12px 0 var(--dark);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all var(--transition-fast);
}

.header.scrolled {
  padding: 0.25rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.logo:hover {
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.navbar-menu {
  transition: all var(--transition-fast);
}

.navbar-item {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary);
  background-color: transparent;
}

.navbar-burger {
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .navbar-menu.is-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, var(--overlay-dark), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 8rem 1.5rem;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-body .container {
  max-width: 800px;
}

.hero .title,
.hero .subtitle {
  color: var(--white) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: var(--white);
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.hero .buttons {
  margin-top: 2rem;
}

.hero .button {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.content-box {
  padding: 2.5rem;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 1s ease-out;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* About Section */
.about-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

/* Accordion */
.accordion {
  margin-top: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
}

.accordion-header {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  box-shadow: 
    5px 5px 10px var(--shadow-dark),
    -5px -5px 10px var(--shadow-light);
  transition: all var(--transition-fast);
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.accordion-header.active {
  background-color: var(--primary-light);
  color: var(--white);
}

.accordion-header.active:after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  transition: all var(--transition-medium);
  opacity: 0;
}

.accordion-header.active + .accordion-content {
  max-height: 500px;
  padding: 1rem;
  opacity: 1;
}

/* Team Section */
.team-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-medium);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card .card-image {
  width: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.team-card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.team-card:hover .card-image img {
  transform: scale(1.05);
}

.team-card .card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-card .title {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card .subtitle {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  margin: 0 0.5rem;
  color: var(--primary);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--secondary);
}

/* Testimonial Section */
.testimonials-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .media {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-card .media-left {
  margin-right: 1rem;
}

.testimonial-card .image.is-64x64 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card .image.is-64x64 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.testimonial-card .title {
  margin-bottom: 0.25rem;
}

.testimonial-card .content {
  flex: 1;
}

.testimonial-card .content p {
  font-style: italic;
  color: var(--dark-medium);
}

.testimonial-card .has-text-right {
  text-align: right;
  color: var(--light-medium);
  font-size: 0.85rem;
}

/* Research Section */
.research-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

.research-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-medium);
}

.research-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.research-item h4 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.research-item p {
  margin-bottom: 1.5rem;
}

.research-item .button {
  font-size: 0.85rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.gallery-grid {
  margin-top: 2rem;
}

.gallery-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-medium);
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card .card-image {
  width: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.gallery-card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-card:hover .card-image img {
  transform: scale(1.05);
}

.gallery-card .card-content {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-card .title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-card p {
  color: var(--dark-medium);
}

/* Press Section */
.press-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

.press-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium);
}

.press-card:hover {
  transform: translateY(-5px);
}

.press-card .media {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.press-card .media-left {
  margin-right: 1rem;
}

.press-card .image.is-64x64 {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.press-card .image.is-64x64 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.press-card .content p {
  color: var(--dark-medium);
}

.press-card a {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.press-card a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Blog Section */
.blog-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-medium);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .card-image {
  width: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.blog-card .card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.blog-card:hover .card-image img {
  transform: scale(1.05);
}

.blog-card .card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card .title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card .subtitle {
  color: var(--light-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card .content {
  margin-bottom: 1.5rem;
}

.blog-card .button {
  align-self: flex-start;
}

/* Resources Section */
.resources-section {
  padding: 5rem 1.5rem;
  background-color: var(--light);
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium);
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card .card-content {
  padding: 1.5rem;
  flex: 1;
}

.resource-card .title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.resource-card a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.resource-card a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.resource-card p {
  color: var(--dark-medium);
}

/* Contact Section */
.contact-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.contact-form {
  margin-bottom: 2rem;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-form .control {
  position: relative;
}

.neomorph-input, 
.neomorph-textarea {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--dark);
}

.neomorph-select {
  position: relative;
  width: 100%;
}

.neomorph-select select {
  appearance: none;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background-color: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
}

.neomorph-select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--primary);
}

.contact-info {
  height: 100%;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
  color: var(--dark-medium);
}

.campus-image {
  margin-top: 2rem;
}

.campus-image figure {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.campus-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.campus-image figcaption {
  text-align: center;
  padding: 1rem;
  font-style: italic;
  color: var(--dark-medium);
}

/* FAQ Section */
.faq {
  margin-top: 3rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}

.footer .title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer .title span {
  color: var(--secondary);
}

.footer p {
  color: var(--light);
  margin-bottom: 0.5rem;
}

.footer ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--light);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-light);
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  color: var(--light);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-light);
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--light-medium);
}

/* Success Page */
.success-section {
  padding: 5rem 1.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  margin: 0 auto 2rem;
  width: 120px;
  height: 120px;
}

.success-icon img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.additional-info {
  margin-top: 3rem;
}

.step {
  margin-bottom: 1.5rem;
}

.step h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.social-buttons {
  margin-top: 2rem;
}

.social-button {
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.facebook {
  background-color: #3b5998;
  color: var(--white);
}

.twitter {
  background-color: #1da1f2;
  color: var(--white);
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Terms and Privacy Pages */
.terms-section, 
.privacy-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content h3,
.terms-content h3 {
  color: var(--secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content ul,
.terms-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
}

/* Read More Links */
a.read-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
  position: relative;
  padding-right: 1.5rem;
  transition: all var(--transition-fast);
}

a.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

a.read-more:hover {
  color: var(--primary-dark);
  padding-right: 2rem;
}

a.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Cookie Consent */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#accept-cookies {
  background-color: var(--tertiary);
  color: white;
  border: none;
  padding: 8px 16px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--tertiary-dark);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Utility Classes */
.mt-5 {
  margin-top: 1.5rem;
}

.mt-6 {
  margin-top: 3rem;
}

.has-text-centered {
  text-align: center;
}

.has-text-right {
  text-align: right;
}

.is-centered {
  display: flex;
  justify-content: center;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hero-body {
    padding: 6rem 1rem;
    min-height: 60vh;
  }
  
  .content-box {
    padding: 1.5rem;
  }
  
  .column {
    padding: 0.75rem;
  }
  
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .team-card .card-image img,
  .gallery-card .card-image img,
  .blog-card .card-image img {
    height: 200px;
  }
  
  .campus-image img {
    height: 200px;
  }
  
  .footer {
    padding: 3rem 1rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .title.is-1 {
    font-size: 2rem;
  }
  
  .title.is-2 {
    font-size: 1.75rem;
  }
  
  .subtitle.is-3 {
    font-size: 1.25rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero .buttons {
    flex-direction: column;
  }
  
  .hero .button {
    width: 100%;
    margin-right: 0;
  }
}