/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #5eacff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2a0e33;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #5eacff;
    color: white;
}

.btn-primary:hover {
    background-color: #4a9ae6;
    color: white;
}

.btn-secondary {
    background-color: #2a0e33;
    color: white;
}

.btn-secondary:hover {
    background-color: #1a0822;
    color: white;
}

.btn-link {
    background-color: transparent;
    color: #5eacff;
    text-decoration: underline;
}

.btn-link:hover {
    color: #2a0e33;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a0e33;
}

.nav-brand .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #5eacff;
    border-bottom-color: #5eacff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #5eacff 0%, #2a0e33 100%);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #5eacff 0%, #2a0e33 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Grid Layouts */
.experts-grid,
.advantages-grid,
.services-grid,
.reviews-grid,
.values-grid,
.trends-grid,
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expert-card,
.advantage-item,
.service-card,
.review-card,
.value-item,
.trend-item,
.challenge-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expert-card:hover,
.advantage-item:hover,
.service-card:hover,
.review-card:hover,
.value-item:hover,
.trend-item:hover,
.challenge-item:hover {
    transform: translateY(-5px);
}

.expert-card h3,
.advantage-item h3,
.service-card h3,
.review-card h3,
.value-item h3,
.trend-item h3,
.challenge-item h3 {
    color: #2a0e33;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #2a0e33;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item img {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2a0e33;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #5eacff;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Companies Page */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.company-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.company-header {
    background: linear-gradient(135deg, #5eacff 0%, #2a0e33 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.company-rating {
    text-align: center;
}

.rating-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.company-description,
.company-advantages,
.financial-indicators,
.equipment-info {
    padding: 1.5rem;
}

.company-advantages h4,
.financial-indicators h4,
.equipment-info h4 {
    color: #2a0e33;
    margin-bottom: 1rem;
}

.company-advantages ul,
.equipment-info ul {
    list-style: none;
    padding: 0;
}

.company-advantages li,
.equipment-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.company-advantages li:before,
.equipment-info li:before {
    content: "•";
    color: #5eacff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.indicator-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.indicator-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2a0e33;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: #2a0e33;
    margin-bottom: 0.5rem;
}

.position {
    color: #5eacff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.credentials {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #5eacff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 60%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 60%;
}

.timeline-date {
    position: absolute;
    top: 0;
    background: #5eacff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -8%;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -8%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.timeline-content h3 {
    color: #2a0e33;
    margin-bottom: 0.5rem;
}

/* Current State Grid */
.current-state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.state-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.state-card h3 {
    color: #2a0e33;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #5eacff;
    display: block;
    margin-bottom: 1rem;
}

.state-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

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

/* Technology Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #5eacff;
}

.tech-card h3 {
    color: #2a0e33;
    margin-bottom: 1rem;
}

.tech-card ul {
    list-style: none;
    margin-top: 1rem;
}

.tech-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tech-card li:before {
    content: "▸";
    color: #5eacff;
    position: absolute;
    left: 0;
}

/* Contact Page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details .contact-item {
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-details .contact-item img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-details .contact-item h3 {
    margin: 0 0 0.5rem 0;
    color: #2a0e33;
}

.contact-details .contact-item p {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.contact-details .contact-item small {
    color: #666;
    font-size: 0.9rem;
}

.social-section h3 {
    color: #2a0e33;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #f8f9fa;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2a0e33;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.checkmark {
    margin-left: 0.5rem;
}

/* Newsletter */
.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
}

.form-row button {
    padding: 12px 24px;
    white-space: nowrap;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2a0e33;
    margin-bottom: 1rem;
}

/* Market Summary */
.market-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.summary-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.summary-item h3 {
    color: #2a0e33;
    margin-bottom: 1rem;
}

/* Outlook Content */
.outlook-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.outlook-content h3 {
    color: #2a0e33;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.outlook-content h3:first-child {
    margin-top: 0;
}

.outlook-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.outlook-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.outlook-content li:before {
    content: "→";
    color: #5eacff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #5eacff 0%, #2a0e33 100%);
    color: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.thank-you-info {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thank-you-info ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.thank-you-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5eacff;
    font-weight: bold;
}

.thank-you-actions {
    margin-bottom: 3rem;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
    margin: 0 1rem;
    margin-bottom: 1rem;
}

.thank-you-contact {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
}

.thank-you-contact h3 {
    margin-bottom: 1rem;
}

.thank-you-contact a {
    color: #5eacff;
    font-weight: bold;
}

.thank-you-contact a:hover {
    color: white;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: #2a0e33;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #5eacff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
}

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookie-table th {
    background: #5eacff;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a0e33;
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: #2a0e33;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.cookie-option p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-buttons button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: #2a0e33;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #5eacff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #5eacff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #5eacff;
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin-bottom: 1rem;
    }
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-content p,
    .page-header p {
        font-size: 1.1rem;
    }
    
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        padding-top: 30px;
        padding-left: 60px !important;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-date {
        left: 0 !important;
        right: auto !important;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .contact-form-section {
        padding: 0;
        box-shadow: none;
    }
    body {
        word-break: break-word;
    }
}

/* Animation for smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Print styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none;
    }
    
    .hero,
    .page-header {
        background: none;
        color: black;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .legal-content {
        box-shadow: none;
    }
}
