/* 
* Surizi-Botubo - Croatian Tea Company
* Main Stylesheet
* Colors:
* - Primary: #00C2A8 (Bright turquoise)
* - Accent: #2F1E5D (Deep purple-blue)
* - Text: #2B2B2B (Neutral anthracite)
* - Background gradients: from #FEF8F0 to #EAF8F6
* - CTA: #B4D455 (Golden lime)
* - Form elements: #FF6F61 (Matte coral)
*/

/* Base Styles & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #2B2B2B;
  background: linear-gradient(135deg, #FEF8F0 0%, #EAF8F6 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #00C2A8;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: #2F1E5D;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #2F1E5D;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.8rem;
  height: 4px;
  width: 80px;
  background: #00C2A8;
  transform: translateX(-50%);
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

/* Buttons */
.button, button, [type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00C2A8;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 194, 168, 0.3);
}

.button:hover, button:hover, [type="submit"]:hover,
.button:focus, button:focus, [type="submit"]:focus {
  background-color: #2F1E5D;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(47, 30, 93, 0.4);
  color: white;
}

.button:active, button:active, [type="submit"]:active {
  transform: translateY(-1px);
}

.cta-button {
  background-color: #B4D455;
  color: #2F1E5D;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(180, 212, 85, 0.4);
}

.cta-button:hover,
.cta-button:focus {
  background-color: #2F1E5D;
  color: white;
}

/* Header */
.site-header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: #2F1E5D;
  font-weight: bold;
  font-size: 1.4rem;
}

.logo svg {
  margin-right: 10px;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  color: #2B2B2B;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00C2A8;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.main-nav .cta-button {
  padding: 8px 20px;
  color: #2F1E5D;
}

.main-nav .cta-button:hover,
.main-nav .cta-button:focus {
  color: white;
}

.main-nav .cta-button::after {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  
  .logo a {
    font-size: 1.2rem;
  }
  
  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 10px 0;
    margin-left: 0;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2F1E5D;
    cursor: pointer;
    padding: 5px;
  }
}

/* Cookie popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(47, 30, 93, 0.95);
  color: white;
  z-index: 1001;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 0;
  margin-right: 20px;
}

.cookie-accept {
  background-color: #B4D455;
  color: #2F1E5D;
  min-width: 120px;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Hero Section */
.hero {
  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FEF8F0 0%, #EAF8F6 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: #2F1E5D;
  animation: fadeInDown 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-cta {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 194, 168, 0.1);
  animation: float 15s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(180, 212, 85, 0.1);
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, 30px);
  }
  50% {
    transform: translate(0, 60px);
  }
  75% {
    transform: translate(-30px, 30px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about {
  background: white;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, #FEF8F0 0%, #FEF8F0 50%, transparent 50%);
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
}

/* Benefits Section */
.benefits {
  background: linear-gradient(135deg, #EAF8F6 0%, #FEF8F0 100%);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom left, white 0%, white 50%, transparent 50%);
}

.benefits-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: #00C2A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
}

/* Products Section */
.products {
  background: white;
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, #EAF8F6 0%, #EAF8F6 50%, transparent 50%);
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  background: white;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-details {
  padding: 20px;
}

.product-title {
  font-size: 1.4rem;
  color: #2F1E5D;
  margin-bottom: 10px;
}

.product-description {
  margin-bottom: 15px;
  color: #666;
}

.product-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00C2A8;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #FEF8F0 0%, #EAF8F6 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom left, white 0%, white 50%, transparent 50%);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 100px;
  color: rgba(0, 194, 168, 0.1);
  line-height: 1;
  font-family: serif;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.author-details p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Before/After Section */
.before-after {
  background: white;
  position: relative;
}

.before-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, #EAF8F6 0%, #EAF8F6 50%, transparent 50%);
}

.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.comparison-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-images {
  display: flex;
}

.comparison-image {
  width: 50%;
  position: relative;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(47, 30, 93, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 0.8rem;
}

.comparison-info {
  padding: 20px;
  text-align: center;
}

.comparison-info h4 {
  margin-bottom: 10px;
}

.comparison-info p {
  margin-bottom: 0;
  color: #666;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, #EAF8F6 0%, #FEF8F0 100%);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom left, white 0%, white 50%, transparent 50%);
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: white;
}

.faq-question {
  display: block;
  background: white;
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  color: #2F1E5D;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #00C2A8;
}

.faq-item:target .faq-question::after {
  content: '−';
}

.faq-answer {
  background: #f9f9f9;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item:target .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* Make sure the content inside is also styled properly */
.faq-answer p {
  margin: 0;
}

/* Ensure proper layout for mobile */
@media (max-width: 768px) {
  .faq-question {
    padding: 15px;
  }
  
  .faq-question::after {
    right: 15px;
    font-size: 1.3rem;
  }
  
  .faq-item:target .faq-answer {
    padding: 15px;
  }
}

/* Order Form Section */
.order {
  background: white;
  position: relative;
}

.order::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom right, #FEF8F0 0%, #FEF8F0 50%, transparent 50%);
}

.order-form-container {
  max-width: 600px;
  margin: 50px auto 0;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #2F1E5D;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #00C2A8;
  box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
  min-width: 18px;
  height: 18px;
  appearance: none;
  background-color: white;
  border: 2px solid #e1e1e1;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #FF6F61;
  border-color: #FF6F61;
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}

.form-check-label {
  font-size: 0.9rem;
  color: #666;
}

.form-check-label a {
  color: #00C2A8;
  text-decoration: underline;
}

.submit-btn {
  background-color: #B4D455;
  color: #2F1E5D;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.error-message {
  color: #FF6F61;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Footer */
.site-footer {
  background: #2F1E5D;
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom left, white 0%, white 50%, transparent 50%);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo svg {
  margin-right: 10px;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 0;
}

.footer-column h4 {
  color: #00C2A8;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-info, .legal-links {
  list-style: none;
}

.contact-info li, .legal-links li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info svg, .legal-links svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.contact-info a, .legal-links a {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info a:hover, .legal-links a:hover {
  color: #00C2A8;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 150px 0 100px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: #00C2A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 50px;
}

.thank-you h2 {
  margin-bottom: 20px;
}

.thank-you p {
  margin-bottom: 30px;
}

/* Policy Pages */
.policy-page {
  padding: 150px 0 100px;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
  text-align: left;
  margin-top: 40px;
}

.policy-content h2::after {
  left: 0;
  transform: none;
}

.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  margin-bottom: 20px;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  color: #00C2A8;
  font-weight: bold;
}

.back-button svg {
  margin-right: 8px;
}

/* Media Queries */
@media (max-width: 992px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .order-form-container {
    padding: 30px;
  }
  
  .policy-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  
  .benefit-card,
  .product-card,
  .testimonial-card,
  .comparison-card {
    min-width: 0;
  }
  
  .order-form-container {
    padding: 20px;
  }
}

/* CSS-Only Mobile Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: none;
  }
  
  .site-header .container {
    position: relative;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    opacity: 1;
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav:target {
    max-height: 300px;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .main-nav li {
    margin: 10px 0;
  }
  
  .menu-toggle-label {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 21px;
    position: relative;
    cursor: pointer;
  }
  
  .menu-toggle-label span {
    background: #2F1E5D;
    border-radius: 3px;
    height: 3px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
  }
  
  .menu-toggle-label span:last-child {
    margin-bottom: 0;
  }
  
  #menu-toggle:target ~ .menu-toggle-label span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  #menu-toggle:target ~ .menu-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:target ~ .menu-toggle-label span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Custom animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Error messages for form */
.form-errors {
  background: rgba(255, 111, 97, 0.1);
  border-left: 4px solid #FF6F61;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.form-errors ul {
  margin: 0;
  padding-left: 20px;
}

.form-errors li {
  color: #FF6F61;
}

/* Favicon */
.favicon {
  display: none;
} 