/* SteamSelecto - Custom Stylesheet */
/* Base color: #49da8a, System fonts, High contrast design */

/* CSS Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

.ss-body {
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Custom Scrollbar */
.ss-body::-webkit-scrollbar {
  width: 8px;
}

.ss-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.ss-body::-webkit-scrollbar-thumb {
  background-color: #49da8a;
  border-radius: 4px;
}

.ss-body::-webkit-scrollbar-thumb:hover {
  background-color: #3bc878;
}

/* Container */
.ss-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Typography */
.ss-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.ss-section-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.ss-about-card-title,
.ss-why-title,
.ss-contact-title,
.ss-footer-title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.ss-game-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.ss-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.ss-form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Header Styles */
.ss-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.ss-header-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.ss-logo-text {
  color: #49da8a;
  font-size: 1.75rem;
  font-weight: 700;
}

/* Navigation Styles */
.ss-nav {
  position: relative;
}

.ss-burger-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 24px;
  justify-content: space-between;
  padding: 0;
  width: 24px;
}

.ss-burger-line {
  background-color: #1a1a1a;
  height: 3px;
  transition: all 0.3s ease;
  width: 100%;
}

.ss-burger-menu[aria-expanded="true"] .ss-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.ss-burger-menu[aria-expanded="true"] .ss-burger-line:nth-child(2) {
  opacity: 0;
}

.ss-burger-menu[aria-expanded="true"] .ss-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.ss-nav-list {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  opacity: 0;
  padding: 1rem 0;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  visibility: hidden;
  width: 200px;
}

.ss-nav-list.ss-nav-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.ss-nav-item {
  margin: 0;
}

.ss-nav-link {
  color: #1a1a1a;
  display: block;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ss-nav-link:hover,
.ss-nav-link:focus {
  background-color: #f8f9fa;
  color: #49da8a;
  outline: 2px solid #49da8a;
  outline-offset: -2px;
}

.ss-nav-active {
  color: #49da8a;
  font-weight: 600;
}

/* Hero Section */
.ss-hero {
  align-items: center;
  display: flex;
  margin-top: 70px;
  min-height: 500px;
  position: relative;
}

.ss-hero-background {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.ss-hero-image {
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  width: 100%;
}

.ss-hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.ss-hero-title {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.ss-hero-subtitle {
  color: #4a4a4a;
  margin-bottom: 2rem;
}

/* Button Styles */
.ss-btn {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.875rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ss-btn:focus {
  outline: 2px solid #49da8a;
  outline-offset: 2px;
}

.ss-btn-primary {
  background: linear-gradient(135deg, #49da8a 0%, #3bc878 100%);
  color: #ffffff;
}

.ss-btn-primary:hover {
  background: linear-gradient(135deg, #3bc878 0%, #2fb665 100%);
  transform: translateY(-2px);
}

.ss-btn-secondary {
  background-color: #ffffff;
  border: 2px solid #49da8a;
  color: #49da8a;
}

.ss-btn-secondary:hover {
  background-color: #49da8a;
  color: #ffffff;
  transform: translateY(-2px);
}

.ss-btn-small {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.ss-btn-full {
  width: 100%;
}

/* Section Styles */
.ss-about,
.ss-games,
.ss-gallery,
.ss-why-us,
.ss-contact {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.ss-section-title {
  color: #1a1a1a;
}

/* About Section */
.ss-about {
  background-color: #f8f9fa;
}

.ss-about-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ss-about-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease;
}

.ss-about-card:hover {
  transform: translateY(-4px);
}

.ss-about-card-title {
  color: #49da8a;
  margin-bottom: 1rem;
}

.ss-about-card-text {
  color: #4a4a4a;
}

/* Games Section */
.ss-games-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ss-game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ss-game-card:hover {
  transform: translateY(-4px);
}

.ss-game-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.ss-game-content {
  padding: 1.5rem;
}

.ss-game-title {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.ss-game-genre {
  color: #4a4a4a;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Gallery Section */
.ss-gallery {
  background-color: #f8f9fa;
}

.ss-gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ss-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ss-gallery-item:hover {
  transform: scale(1.05);
}

.ss-gallery-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Why Us Section */
.ss-why-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ss-why-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.ss-why-card:hover {
  transform: translateY(-4px);
}

.ss-why-title {
  color: #49da8a;
  margin-bottom: 1rem;
}

.ss-why-text {
  color: #4a4a4a;
}

/* Contact Section */
.ss-contact {
  background-color: #f8f9fa;
}

.ss-contact-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 2fr 1fr;
}

.ss-contact-form {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.ss-form-group {
  margin-bottom: 1.5rem;
}

.ss-form-label {
  color: #1a1a1a;
  display: block;
  margin-bottom: 0.5rem;
}

.ss-form-input,
.ss-form-textarea {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.875rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

.ss-form-input:focus,
.ss-form-textarea:focus {
  border-color: #49da8a;
  outline: none;
}

.ss-form-textarea {
  resize: vertical;
}

.ss-contact-info {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.ss-contact-title {
  color: #49da8a;
  margin-bottom: 1.5rem;
}

.ss-contact-address,
.ss-contact-phone {
  color: #4a4a4a;
  margin-bottom: 1rem;
}

/* Footer Styles */
.ss-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-bottom: 2rem;
  padding-top: 3rem;
}

.ss-footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 2rem;
}

.ss-footer-title {
  color: #49da8a;
  margin-bottom: 1rem;
}

.ss-footer-text {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.ss-footer-menu {
  list-style: none;
}

.ss-footer-menu-item {
  margin-bottom: 0.5rem;
}

.ss-footer-link {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ss-footer-link:hover,
.ss-footer-link:focus {
  color: #49da8a;
  outline: 1px solid #49da8a;
}

.ss-footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
  text-align: center;
}

.ss-footer-copyright {
  color: #cccccc;
  font-size: 0.875rem;
}

/* Cookie Notice */
.ss-cookie-notice {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  left: 2rem;
  max-width: 400px;
  padding: 1.5rem;
  position: fixed;
  right: 2rem;
  z-index: 1000;
}

.ss-cookie-notice.ss-cookie-hidden {
  display: none;
}

.ss-cookie-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ss-cookie-text {
  color: #4a4a4a;
  font-size: 0.875rem;
  text-align: center;
}

.ss-cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ss-hero-title {
    font-size: 2rem;
  }
  
  .ss-section-title {
    font-size: 1.75rem;
  }
  
  .ss-about-card-title,
  .ss-why-title,
  .ss-contact-title,
  .ss-footer-title {
    font-size: 1.5rem;
  }
  
  .ss-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .ss-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .ss-contact-content {
    grid-template-columns: 1fr;
  }
  
  .ss-cookie-notice {
    left: 1rem;
    right: 1rem;
  }
  
  .ss-cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ss-hero-title {
    font-size: 1.75rem;
  }
  
  .ss-section-title {
    font-size: 1.5rem;
  }
  
  .ss-hero {
    min-height: 400px;
  }
  
  .ss-about,
  .ss-games,
  .ss-gallery,
  .ss-why-us,
  .ss-contact {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

/* Animation & Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Thank You Page Styles */
.ss-thankyou {
  align-items: center;
  display: flex;
  margin-top: 70px;
  min-height: 60vh;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-thankyou-content {
  width: 100%;
}

.ss-success-card,
.ss-error-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 600px;
  padding: 3rem;
  text-align: center;
}

.ss-success-icon,
.ss-error-icon {
  background-color: #49da8a;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-size: 2rem;
  font-weight: bold;
  height: 80px;
  margin-bottom: 2rem;
  width: 80px;
  align-items: center;
  justify-content: center;
}

.ss-error-icon {
  background-color: #dc3545;
}

.ss-success-title,
.ss-error-title {
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ss-success-message,
.ss-error-message {
  color: #4a4a4a;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ss-success-details {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  text-align: left;
}

.ss-success-details h3 {
  color: #49da8a;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ss-success-details p {
  color: #4a4a4a;
  margin-bottom: 0.5rem;
}

.ss-error-list {
  color: #dc3545;
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
  text-align: left;
}

.ss-error-list li {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
}

.ss-success-actions,
.ss-error-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ss-redirect-notice {
  color: #6c757d;
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .ss-success-actions,
  .ss-error-actions {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
}

/* About Page Styles */
.ss-about-hero {
  background-color: #f8f9fa;
  margin-top: 70px;
  padding-bottom: 4rem;
  padding-top: 4rem;
  text-align: center;
}

.ss-about-hero-title {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ss-about-hero-subtitle {
  color: #4a4a4a;
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.ss-mission {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-mission-content {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: 2fr 1fr;
}

.ss-mission-description {
  color: #4a4a4a;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ss-mission-img {
  border-radius: 12px;
  height: auto;
  width: 100%;
}

.ss-values {
  background-color: #f8f9fa;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ss-value-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease;
}

.ss-value-card:hover {
  transform: translateY(-4px);
}

.ss-value-title {
  color: #49da8a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ss-value-text {
  color: #4a4a4a;
  line-height: 1.6;
}

.ss-story {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ss-story-text {
  margin-top: 2rem;
}

.ss-story-paragraph {
  color: #4a4a4a;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.ss-contact-info {
  background-color: #f8f9fa;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-contact-info-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.ss-contact-info-text {
  color: #4a4a4a;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ss-contact-details {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.ss-contact-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.ss-contact-item-title {
  color: #49da8a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ss-contact-item-text {
  color: #4a4a4a;
}

/* About Page Responsive */
@media (max-width: 768px) {
  .ss-about-hero-title {
    font-size: 2rem;
  }
  
  .ss-about-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .ss-mission-content {
    grid-template-columns: 1fr;
  }
  
  .ss-mission-image {
    order: -1;
  }
  
  .ss-story-paragraph {
    font-size: 1rem;
  }
}

/* Privacy Page Styles */
.ss-privacy-hero {
  background-color: #f8f9fa;
  margin-top: 70px;
  padding-bottom: 3rem;
  padding-top: 3rem;
  text-align: center;
}

.ss-privacy-hero-title {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ss-privacy-hero-subtitle {
  color: #4a4a4a;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.ss-privacy-date {
  color: #6c757d;
  font-size: 0.875rem;
  font-style: italic;
}

.ss-privacy-content {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-privacy-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.ss-privacy-section {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2.5rem;
}

.ss-privacy-section-title {
  border-bottom: 2px solid #49da8a;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.ss-privacy-subsection-title {
  color: #49da8a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.ss-privacy-text {
  color: #4a4a4a;
  line-height: 1.7;
}

.ss-privacy-text p {
  margin-bottom: 1rem;
}

.ss-privacy-text p:last-child {
  margin-bottom: 0;
}

.ss-privacy-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.ss-privacy-list li {
  background-color: #f8f9fa;
  border-left: 4px solid #49da8a;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  position: relative;
}

.ss-privacy-list li::before {
  color: #49da8a;
  content: "•";
  font-size: 1.2rem;
  font-weight: bold;
  left: 0.5rem;
  position: absolute;
  top: 0.75rem;
}

.ss-privacy-list li {
  padding-left: 2rem;
}

.ss-privacy-contact {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.ss-privacy-contact p {
  margin-bottom: 0.5rem;
}

.ss-privacy-contact p:last-child {
  margin-bottom: 0;
}

/* Privacy Page Responsive */
@media (max-width: 768px) {
  .ss-privacy-hero-title {
    font-size: 2rem;
  }
  
  .ss-privacy-hero-subtitle {
    font-size: 1rem;
  }
  
  .ss-privacy-section {
    padding: 1.5rem;
  }
  
  .ss-privacy-section-title {
    font-size: 1.25rem;
  }
  
  .ss-privacy-subsection-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .ss-privacy-hero {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  
  .ss-privacy-hero-title {
    font-size: 1.75rem;
  }
  
  .ss-privacy-section {
    padding: 1rem;
  }
  
  .ss-privacy-list li {
    padding-left: 1.5rem;
  }
}

/* Cookie Policy Page Styles */
.ss-cookie-hero {
  background-color: #f8f9fa;
  margin-top: 70px;
  padding-bottom: 3rem;
  padding-top: 3rem;
  text-align: center;
}

.ss-cookie-hero-title {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ss-cookie-hero-subtitle {
  color: #4a4a4a;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.ss-cookie-date {
  color: #6c757d;
  font-size: 0.875rem;
  font-style: italic;
}

.ss-cookie-content {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.ss-cookie-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.ss-cookie-section {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2.5rem;
}

.ss-cookie-section-title {
  border-bottom: 2px solid #49da8a;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.ss-cookie-subsection-title {
  color: #49da8a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.ss-cookie-text {
  color: #4a4a4a;
  line-height: 1.7;
}

.ss-cookie-text p {
  margin-bottom: 1rem;
}

.ss-cookie-text p:last-child {
  margin-bottom: 0;
}

.ss-cookie-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.ss-cookie-list li {
  background-color: #f8f9fa;
  border-left: 4px solid #49da8a;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  position: relative;
}

.ss-cookie-list li::before {
  color: #49da8a;
  content: "🍪";
  font-size: 1rem;
  left: 0.5rem;
  position: absolute;
  top: 0.75rem;
}

.ss-cookie-list li {
  padding-left: 2.5rem;
}

.ss-cookie-table {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  overflow: hidden;
}

.ss-cookie-row {
  border-bottom: 1px solid #e5e5e5;
  display: grid;
  grid-template-columns: 150px 1fr;
}

.ss-cookie-row:last-child {
  border-bottom: none;
}

.ss-cookie-cell {
  padding: 0.75rem 1rem;
}

.ss-cookie-cell:first-child {
  background-color: #ffffff;
  border-right: 1px solid #e5e5e5;
}

.ss-cookie-link {
  color: #49da8a;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.ss-cookie-link:hover,
.ss-cookie-link:focus {
  color: #3bc878;
  outline: 1px solid #49da8a;
}

.ss-cookie-contact {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.ss-cookie-contact p {
  margin-bottom: 0.5rem;
}

.ss-cookie-contact p:last-child {
  margin-bottom: 0;
}

/* Cookie Policy Responsive */
@media (max-width: 768px) {
  .ss-cookie-hero-title {
    font-size: 2rem;
  }
  
  .ss-cookie-hero-subtitle {
    font-size: 1rem;
  }
  
  .ss-cookie-section {
    padding: 1.5rem;
  }
  
  .ss-cookie-section-title {
    font-size: 1.25rem;
  }
  
  .ss-cookie-subsection-title {
    font-size: 1.125rem;
  }
  
  .ss-cookie-table {
    font-size: 0.875rem;
  }
  
  .ss-cookie-row {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 480px) {
  .ss-cookie-hero {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  
  .ss-cookie-hero-title {
    font-size: 1.75rem;
  }
  
  .ss-cookie-section {
    padding: 1rem;
  }
  
  .ss-cookie-list li {
    padding-left: 2rem;
  }
  
  .ss-cookie-row {
    grid-template-columns: 1fr;
  }
  
  .ss-cookie-cell:first-child {
    border-bottom: 1px solid #e5e5e5;
    border-right: none;
    font-weight: 600;
  }
}

/* Print Styles */
@media print {
  .ss-header,
  .ss-cookie-notice {
    display: none;
  }
  
  .ss-hero,
  .ss-thankyou {
    margin-top: 0;
  }
} 