
 * { box-sizing: border-box; } html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size: 16px; line-height: 1.6; } body { min-width: 320px; overflow-x: hidden; word-wrap: break-word; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } h1, .h1 { font-size: clamp(1.75rem, 5vw, 4rem); line-height: 1.1; } h2, .h2 { font-size: clamp(1.5rem, 4vw, 3rem); line-height: 1.2; } h3, .h3 { font-size: clamp(1.25rem, 3vw, 2.5rem); line-height: 1.3; } h4, .h4 { font-size: clamp(1.125rem, 2.5vw, 2rem); line-height: 1.4; } h5, .h5 { font-size: clamp(1rem, 2vw, 1.5rem); line-height: 1.4; } h6, .h6 { font-size: clamp(0.875rem, 1.5vw, 1.25rem); line-height: 1.4; } p, .body-text { font-size: clamp(0.875rem, 2.5vw, 1.125rem); line-height: 1.6; margin-bottom: 1em; } a, button, input, select, textarea, .clickable { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 16px; text-align: center; text-decoration: none; cursor: pointer; transition: all 0.3s ease; } nav { position: relative; } nav ul { list-style: none; padding: 0; margin: 0; } nav li { position: relative; } nav a { display: block; padding: 15px 20px; border-radius: 4px; transition: all 0.3s ease; } nav a:hover, nav a:focus { background-color: rgba(0, 0, 0, 0.1); transform: translateY(-1px); } img { max-width: 100%; height: auto; display: block; } .responsive-image { width: 100%; object-fit: cover; object-position: center; } .container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px; } .row { display: flex; flex-wrap: wrap; margin: 0 -15px; } .col { flex: 1; padding: 0 15px; min-width: 0; } .grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .grid-2 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .grid-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } form { width: 100%; max-width: 600px; } input, textarea, select { width: 100%; max-width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px;  line-height: 1.4; resize: vertical; } input[type="submit"], input[type="button"], button { width: auto; min-width: 120px; background-color: #007cba; color: white; border: none; cursor: pointer; font-weight: bold; } .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; } table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; } th, td { padding: 12px; text-align: left; border-bottom: 1px solid #ddd; min-width: 120px; } @media screen and (max-width: 374px) { .container { padding: 0 15px; } .grid { grid-template-columns: 1fr; } nav a { padding: 12px 15px; } h1 { font-size: 1.75rem; } h2 { font-size: 1.5rem; } } @media screen and (min-width: 375px) and (max-width: 575px) { .container { padding: 0 20px; } .grid-2 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } } @media screen and (min-width: 576px) and (max-width: 767px) { .container { padding: 0 30px; } .grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } nav { display: flex; justify-content: space-between; align-items: center; } nav ul { display: flex; gap: 1rem; } } @media screen and (min-width: 768px) and (max-width: 991px) { .container { padding: 0 40px; } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(3, 1fr); } } @media screen and (min-width: 992px) and (max-width: 1199px) { .container { max-width: 960px; } .grid-4 { grid-template-columns: repeat(4, 1fr); } } @media screen and (min-width: 1200px) and (max-width: 1399px) { .container { max-width: 1140px; } } @media screen and (min-width: 1400px) { .container { max-width: 1320px; } html { font-size: 18px; } } @media screen and (min-width: 2560px) { .container { max-width: 2400px; } html { font-size: 20px; } h1 { font-size: 4.5rem; } h2 { font-size: 3.5rem; } h3 { font-size: 2.75rem; } } @media screen and (orientation: landscape) and (max-height: 500px) { .hero-section { min-height: 400px; } nav { padding: 10px 0; } h1 { font-size: 2.5rem; } } @media print { * { color: black !important; background: white !important; box-shadow: none !important; text-shadow: none !important; } .container { max-width: none !important; padding: 0 !important; } nav, .back-to-top, .cookie-consent { display: none !important; } h1, h2, h3 { page-break-after: avoid; } p { orphans: 3; widows: 3; } } @media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { img { image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; } } @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } @media (prefers-color-scheme: dark) { body { background-color: #1a1a1a; color: #ffffff; } input, textarea, select { background-color: #2a2a2a; color: #ffffff; border-color: #444444; } a { color: #66b3ff; } } .hide-mobile { display: block; } .show-mobile { display: none; } .text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; } .d-flex { display: flex; } .d-block { display: block; } .d-none { display: none; } @media screen and (max-width: 767px) { .hide-mobile { display: none; } .show-mobile { display: block; } .text-center-mobile { text-align: center; } }