/* styles.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover,
nav a:focus,
nav a.active {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
    outline: none;
}

/* Language switcher styles */
.language-switcher {
    margin-left: 1rem;
}

.language-btn {
    background: none;
    border: 2px solid #3498db;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    min-width: 120px;
    justify-content: center;
}

.language-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.language-btn:active {
    transform: translateY(0);
}

.flag-icon {
    font-size: 1.2em;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

#currentFlag {
    opacity: 1;
}

#altFlag {
    opacity: 0.7;
}

.language-btn:hover #altFlag {
    opacity: 1;
}

#currentLang {
    font-weight: 700;
    color: #3498db;
}

.language-btn:hover #currentLang,
.language-btn:focus #currentLang {
    color: #fff;
}

#altLang {
    opacity: 0.7;
}

.language-btn:hover #altLang,
.language-btn:focus #altLang {
    opacity: 1;
}

/* Language Toggle Styles with Flag Icons */
.language-toggle .flag-icon {
    font-size: 1.2em;
    margin: 0 4px;
    display: inline-block;
    vertical-align: middle;
}

.language-toggle .current-lang {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-toggle .alt-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.language-toggle:hover .alt-lang {
    opacity: 1;
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.btn-tertiary {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.company-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 5px solid #3498db;
}

.company-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.service-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0 0 1rem 0;
}

.service-item ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.service-item li {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-item li::marker {
    color: #3498db;
}

.company-summary {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 15px;
    color: white;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.company-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e3f2fd;
    border-color: #3498db;
}

.contact-item strong {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-item span {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover,
.contact-item a:focus {
    color: #2980b9;
    text-decoration: underline;
}

/* Form styles */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
    accent-color: #3498db;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: underline;
}

.checkbox-label a:hover,
.checkbox-label a:focus {
    color: #2980b9;
}

/* Error messages */
.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 1.2em;
}

/* Success message styles */
.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideInDown 0.3s ease-out;
}

/* Imprint section */
.imprint {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.imprint h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.imprint-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.imprint-content-inline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-data,
.contact-data,
.legal-data {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

.company-data h3,
.contact-data h3,
.legal-data h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.data-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    text-align: center;
}

.data-row:last-child {
    margin-bottom: 0;
}

.data-row span {
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.data-row span:hover {
    background: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.data-row a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.data-row a:hover,
.data-row a:focus {
    text-decoration: underline;
    color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 0.12rem 0;
}

.footer-links {
    margin-top: 0.2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
    outline: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: white;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none; /* Ukryte domyślnie */
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-content a:hover,
.cookie-content a:focus {
    color: #5dade2;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1002;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

/* Imprint Modal Specific Styles */
.imprint-modal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-data-modal,
.contact-data-modal,
.legal-data-modal,
.business-info-modal {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.company-data-modal h4,
.contact-data-modal h4,
.legal-data-modal h4,
.business-info-modal h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.data-grid {
    display: grid;
    gap: 0.8rem;
}

.data-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.data-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.data-item strong {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
}

.data-item span {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.4;
}

.data-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.data-item a:hover,
.data-item a:focus {
    text-decoration: underline;
    color: #2980b9;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close:hover,
.close:focus {
    background-color: rgba(52, 152, 219, 0.2);
    outline: none;
}

.modal-body {
    padding: 30px;
    max-height: 50vh;
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h4 {
    color: #2c3e50;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body ul {
    margin: 10px 0 10px 20px;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-body a {
    color: #3498db;
    text-decoration: none;
}

.modal-body a:hover,
.modal-body a:focus {
    text-decoration: underline;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #ecf0f1;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Cookie categories */
.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 5px;
    background-color: #f8f9fa;
}

.cookie-category > div {
    flex: 1;
}

.cookie-category h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3498db;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

input:focus + .slider {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about h2,
    .contact h2,
    .imprint h2 {
        font-size: 2rem;
    }
    
    form {
        padding: 20px;
        margin: 0 20px;
    }
    
    main {
        margin-top: 140px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .cookie-category {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .switch {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .imprint-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-content,
    .about p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about,
    .contact,
    .imprint {
        padding: 60px 0;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    nav a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero::before {
        opacity: 0.8;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 2px solid #333;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #4a9eff;
        --secondary-color: #1e3a8a;
        --text-color: #e5e7eb;
        --bg-color: #111827;
        --card-bg: #1f2937;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .card {
        background-color: var(--card-bg);
        border-color: #374151;
    }
    
    .modal-content {
        background-color: var(--card-bg);
        color: var(--text-color);
    }
    
    .cookie-banner {
        background-color: var(--card-bg);
        border-color: #374151;
    }
    
    input, textarea {
        background-color: var(--card-bg);
        border-color: #374151;
        color: var(--text-color);
    }
    
    input::placeholder,
    textarea::placeholder {
        color: #9ca3af;
    }
}

/* Enhanced responsive improvements */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 10px;
        padding: 15px;
    }
    
    .cookie-banner {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}

/* Skip to main content link (for screen readers) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Print styles */
@media print {
    .cookie-banner,
    .modal,
    .footer-links,
    nav {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .hero::before {
        display: none;
    }
}