/* Schengen Visa Website Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #666666;
  text-decoration: underline;
  transition: color 200ms ease-in-out;
}

a:hover {
  color: #333333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

/* Layout */
.layout {
  display: flex;
  gap: 30px;
}

/* Sidebar */
.sidebar {
  width: 250px;
  flex-shrink: 0;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: fit-content;
}

.logo {
  margin-bottom: 15px;
  text-align: center;
}

.logo img {
  width: 150px;
  height: auto;
}

.contact-info {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.contact-info p {
  margin-bottom: 5px;
}

.contact-info .heading {
  font-weight: bold;
  color: #00a651;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-info .phone {
  font-weight: bold;
  color: #00a651;
  font-size: 14px;
}

.navigation h3 {
  color: #00a651;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3px;
}

.navigation .bullet {
  color: #00a651;
  margin-right: 8px;
  font-size: 11px;
  line-height: 1.8;
}

.navigation a {
  font-size: 13px;
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Main Content */
.main-content {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-content h1 {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 16px;
}

.main-content h2 {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 16px;
}

.main-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-top: 24px;
  margin-bottom: 16px;
}

.main-content p {
  margin-bottom: 16px;
}

.main-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}

.main-content ul li {
  margin-bottom: 4px;
}

.main-content ul li::marker {
  color: #00a651;
}

/* Table of Contents */
.toc {
  margin-bottom: 20px;
}

.toc ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Visa Types List */
.visa-types {
  margin: 15px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
}

.visa-types a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 8px;
  padding: 5px 12px;
  background: #e8f5e9;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
}

.visa-types a:hover {
  background: #c8e6c9;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 30px 20px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  opacity: 0.8;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 10px;
  color: #bdc3c7;
}

.footer-years {
  font-size: 16px;
  font-weight: bold;
  color: #00a651;
  margin-bottom: 10px;
}

.footer-phones {
  font-size: 13px;
  color: #95a5a6;
}

.footer-phones span {
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    order: 2;
  }
  
  .main-content {
    order: 1;
  }
  
  .hero-image {
    aspect-ratio: 4 / 3;
  }
  
  .container {
    padding: 10px;
  }
  
  .main-content {
    padding: 15px;
  }
  
  .footer-phones span {
    display: block;
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .hero-image {
    aspect-ratio: 1 / 1;
  }
  
  .main-content h1 {
    font-size: 20px;
  }
  
  .main-content h2 {
    font-size: 16px;
  }
  
  .main-content h3 {
    font-size: 16px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

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