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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    background: #28a745;
}

.btn-accept:hover {
    background: #218838;
}

.btn-decline {
    background: #6c757d;
}

.btn-decline:hover {
    background: #5a6268;
}

/* Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3c72;
    padding: 1rem 0;
}

.nav-brand a {
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 1rem 0;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1e3c72;
}

/* Header - Universal for all stadiums */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%),
                url('background/stadium-default.jpg') center/cover;
    background-blend-mode: overlay;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* San Francisco Stadium specific header background */
.stadium-sanfrancisco header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%),
                url('background/stadium-sanfrancisco.jpg') center/cover;
    background-blend-mode: overlay;
}

/* Azteca Stadium specific header background */
.stadium-azteca header {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.6) 0%, rgba(42, 82, 152, 0.6) 100%),
                url('background/stadium-azteca.jpg') center/cover;
    background-blend-mode: normal;
}

/* Monterrey Stadium specific header background */
.stadium-bbva header {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.55) 0%, rgba(42, 82, 152, 0.55) 100%),
                url('background/montereystadium_full.png') center/cover;
    background-blend-mode: normal;
}

.stadium-bbva header::before {
    background: rgba(30, 60, 114, 0.3);
}

.stadium-azteca header::before {
    background: rgba(30, 60, 114, 0.5);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.5);
    z-index: 1;
}

header > * {
    position: relative;
    z-index: 2;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-subtitle {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-disclaimer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.85;
    font-style: italic;
}

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

/* Highlight */
.highlight {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

/* Welcome Section */
.welcome-section {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.welcome-section h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.welcome-section h3 {
    color: #1e3c72;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.welcome-section ul {
    padding-left: 1.5rem;  /* Indenterar bullet-punkterna */
    margin: 0.75rem 0;
}

.welcome-section ul li {
    margin: 0.25rem 0;  /* Minskat från 0.5rem - tightare mellan punkterna */
    line-height: 1.6;  /* Behåller normal line-height */
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card a {
    text-decoration: none;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-card h2,
.info-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.info-card li:last-child {
    border-bottom: none;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.card-link:hover {
    text-decoration: underline;
}

/* Map Containers */
.map-container {
    background: #f0f0f0;
    height: 500px;
    border-radius: 8px;
    margin: 2rem 0;
    overflow: hidden;
}

.map-placeholder {
    background: #f0f0f0;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    border: 2px dashed #ccc;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    max-width: 450px;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.product-info p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    margin: 0.5rem 0;
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    text-align: left;
    margin: 1rem 0;
}

/* Partner Cards */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partner-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #1e3c72;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #2a5298;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-success {
    background: #28a745;
}

.btn-success:hover {
    background: #218838;
}

.btn-primary {
    background: #007bff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    line-height: 1.4;
}

footer p {
    margin: 0 !important;
    padding: 0.1rem 0 !important;
}

.disclaimer {
    font-size: 0.9rem;
    margin: 0 !important;
    padding: 0.1rem 0 !important;
    opacity: 0.8;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    cursor: pointer;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.show {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

.modal-small {
    max-width: 500px;
}

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

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #1e3c72;
    font-size: 1.75rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.analytics-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.analytics-section h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.data-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.data-item:last-child {
    border-bottom: none;
}

.data-label {
    font-weight: 600;
    color: #495057;
}

.data-value {
    color: #6c757d;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-accepted {
    background: #d4edda;
    color: #155724;
}

.status-declined {
    background: #f8d7da;
    color: #721c24;
}

.action-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    margin: 0.5rem 0.5rem 0.5rem 0;
    text-decoration: none;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    border-left: 4px solid;
}

.alert-info {
    background: #d1ecf1;
    border-color: #0c5460;
    color: #0c5460;
}

.alert-warning {
    background: #fff3cd;
    border-color: #856404;
    color: #856404;
}

.gdpr-rights {
    list-style: none;
    padding: 0;
}

.gdpr-rights li {
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 5px;
    border-left: 3px solid #28a745;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: #6c757d;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Scrollbar Styling for Modal Content */
.modal-body::-webkit-scrollbar {
    width: 10px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Image Handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CUSTOM ICON REPLACEMENT CSS
   ========================================================================== */

/* Feature Card Icons */
.feature-icon {
    font-size: 0;
    overflow: hidden;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 1rem;
    display: block;
}

.icon-map {
    background-image: url('icons/map.png');
}

.icon-travel {
    background-image: url('icons/travel.png');
}

.icon-resources {
    background-image: url('icons/resource.png');
}

/* Info Card Header Icons */
.info-card h2.icon-traffic,
.info-card h2.icon-ride,
.info-card h2.icon-misc,
.info-card h2.icon-parking,
.info-card h2.icon-gps,
.info-card h2.icon-buss,
.info-card h2.icon-train,
.info-card h2.icon-driving,
.info-card h2.icon-alternative,
.info-card h2.icon-visitor,
.info-card h3.icon-train,
.info-card h3.icon-driving,
.info-card h3.icon-alternative,
.info-card h3.icon-visitor {
    font-size: 1.5rem;
}

.info-card h2.icon-traffic::before,
.info-card h2.icon-ride::before,
.info-card h2.icon-misc::before,
.info-card h2.icon-parking::before,
.info-card h2.icon-gps::before,
.info-card h2.icon-buss::before,
.info-card h2.icon-train::before,
.info-card h2.icon-driving::before,
.info-card h2.icon-alternative::before,
.info-card h2.icon-visitor::before,
.info-card h3.icon-train::before,
.info-card h3.icon-driving::before,
.info-card h3.icon-alternative::before,
.info-card h3.icon-visitor::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    vertical-align: middle;
}

/* Individual info card icon replacements */
.highlight h2.icon-travel::before {
    background-image: url('icons/travel.png');
}

.info-card h2.icon-traffic::before {
    background-image: url('icons/trafik.png');
}

.info-card h2.icon-ride::before {
    background-image: url('icons/skapbil.png');
}

.info-card h2.icon-misc::before {
    background-image: url('icons/misc.png');
}

.info-card h2.icon-parking::before {
    background-image: url('icons/parkering.png');
}

.info-card h2.icon-gps::before {
    background-image: url('icons/gps.png');
}

.info-card h2.icon-buss::before {
    background-image: url('icons/buss.png');
}

.icon-train::before,
.info-card h3.icon-train::before {
    background-image: url('icons/train.png');
}

.icon-driving::before,
.info-card h3.icon-driving::before {
    background-image: url('icons/car.png');
}

.icon-alternative::before,
.info-card h3.icon-alternative::before {
    background-image: url('icons/walk.png');
}

.icon-visitor::before,
.info-card h3.icon-visitor::before {
    background-image: url('icons/information.png');
}

/* Standalone h2 icon support */
h2.icon-misc,
h2.icon-ride,
h2.icon-visitor,
h2.icon-gps,
h2.icon-dining {
    font-size: 1.5rem;
}

h2.icon-misc::before,
h2.icon-ride::before,
h2.icon-visitor::before,
h2.icon-gps::before, 
h2.icon-dining::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    vertical-align: middle;
}

h2.icon-misc::before {
    background-image: url('icons/HOTEL.png');
}

h2.icon-ride::before {
    background-image: url('icons/skapbil.png');
}

h2.icon-visitor::before {
    background-image: url('icons/information.png');
}

h2.icon-gps::before {
    background-image: url('icons/ticket.png');
}

h2.icon-dining::before {
    background-image: url('icons/food.png');
}

/* ==========================================================================
   NEW SEO-OPTIMIZED STYLES
   Added: 2026-01-16
   ========================================================================== */

/* Highlight variants for different purposes */
.highlight-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;  /* Samma som welcome-section */
    border-radius: 8px;
    margin: 2rem 0;
    border-left: none;
}

.highlight-primary h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.highlight-primary p {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.highlight-primary ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.highlight-primary ul li {
    padding: 0.2rem 0;  /* TIGHT spacing mellan rader */
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.3;  /* Tightare line-height */
}

.highlight-primary ul li::before {
    content: '⚽';
    position: absolute;
    left: 0;
}

.highlight-primary a {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-top: 0.75rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.highlight-primary a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.highlight-info {
    background: #e8f4f8;
    border-left: 4px solid #2874a6;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.highlight-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.highlight-info ul {
    list-style: none;
    padding-left: 0;
}

.highlight-info ul li {
    padding: 0.5rem 0;
}

/* Budget Planning Section */
.budget-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.budget-section h2 {
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.budget-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.budget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.budget-card h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.budget-popular {
    border: 3px solid #3b82f6;
    transform: scale(1.05);
    position: relative;
}

.budget-popular::after {
    content: '⭐ Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.budget-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #1e3a8a;
    margin: 1rem 0;
}

.budget-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.budget-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.budget-card ul li:last-child {
    border-bottom: none;
}

.budget-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    text-align: left;
}

.budget-note ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.budget-note ul li {
    margin: 0.25rem 0;  /* Tightare mellan punkterna */
    line-height: 1.6;  /* Normal line-height */
}

/* Enhanced CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.cta-section h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-accent {
    background: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-accent:hover {
    background: #b91c1c;
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Section Heading */
.section-heading {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    color: #1e3a8a;
    text-align: center;
}

/* Card Link Text (for feature cards) */
.card-link-text {
    display: inline-block;
    margin-top: 0.5rem;
    color: #3b82f6;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }
    
    header {
        min-height: 250px;
        padding: 2rem 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p,
    .header-subtitle {
        font-size: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .feature-grid,
    .info-grid,
    .product-grid,
    .budget-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
        max-width: 100%;
    }

    .modal-overlay.show {
        padding: 1rem;
        align-items: flex-start;
    }

    .modal-container {
        max-height: 90vh;
        margin-top: 1rem;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h4 {
        font-size: 1.1rem;
    }

    .action-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .analytics-section {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* New responsive styles */
    .highlight-primary,
    .highlight-info {
        padding: 0.75rem;  /* Extra kompakt på mobil */
    }

    .budget-section {
        padding: 1.5rem;
    }

    .budget-section h2,
    .section-heading {
        font-size: 1.5rem;
    }

    .budget-popular {
        transform: scale(1);
    }

    .budget-amount {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn,
    .cta-buttons .btn-accent,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        margin: 0.5rem 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .nav-brand {
        font-size: 1rem;
    }
    
    header {
        min-height: 200px;
        padding: 1.5rem 1rem;
    }
    
    header h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }
    
    header p,
    .header-subtitle {
        font-size: 0.9rem;
    }
    
    .header-disclaimer {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 1rem;
    }

    .highlight-primary,
    .highlight-info {
        padding: 1rem;
    }

    .budget-section {
        padding: 1rem;
    }

    .budget-section h2 {
        font-size: 1.3rem;
    }

    .budget-popular::after {
        font-size: 0.75rem;
        padding: 0.2rem 0.75rem;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }
}