/* CSS Variables */
:root {
    --grass-green: #78a040;
    --anthracite: #404040;
    --pure-white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* LinkedIn Follow Button */
.libutton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7px;
    text-align: center;
    outline: none;
    text-decoration: none !important;
    color: #ffffff !important;
    width: 200px;
    height: 32px;
    border-radius: 16px;
    background-color: #0A66C2;
    font-family: "SF Pro Text", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.libutton:hover {
    background-color: #004182;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* Header LinkedIn Icon */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.linkedin-icon {
    color: var(--anthracite);
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-icon:hover {
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.1);
}

/* Footer Social Section */
.footer-social {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--pure-white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--anthracite);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 900;
    font-size: 18px;
}

.logo-text h2 {
    font-size: 18px;
    color: var(--anthracite);
    margin-bottom: 2px;
}

.logo-x {
    color: var(--grass-green);
}

.logo-text p {
    font-size: 12px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--grass-green);
}

.nav-btn {
    background: var(--grass-green);
    color: var(--pure-white);
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background: var(--anthracite);
}

.language-toggle {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 4px 12px;
    border: none;
    border-radius: 4px;
    background: var(--light-gray);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--anthracite);
    color: var(--pure-white);
}

.lang-btn:hover:not(.active) {
    background: var(--grass-green);
    color: var(--pure-white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--pure-white);
    position: relative;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pure-white) 100%);
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3e%3cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='%234a90e2' stroke-width='1'/%3e%3c/pattern%3e%3c/defs%3e%3crect width='100%25' height='100%25' fill='url(%23grid)'/%3e%3c/svg%3e");
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 60px;
    align-items: center;
}

.logo-intro {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.logo-icon-hero {
    width: 48px;
    height: 48px;
    background: var(--anthracite);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 900;
    font-size: 20px;
}

.logo-intro h3 {
    font-size: 20px;
    color: var(--anthracite);
    margin: 0;
}

.logo-intro p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--anthracite);
    font-family: 'Montserrat', sans-serif;
    word-spacing: normal !important;
    letter-spacing: normal !important;
}

.ceramic-tiles-green {
    color: #78a040 !important;
    font-weight: 600 !important;
}

.hero-line {
    display: block !important;
}

.title-line {
    display: block;
    margin: 0;
    line-height: 1.1;
}

.highlight {
    font-weight: 600 !important;
    color: #78a040 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--pure-white);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--grass-green);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--grass-green);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--anthracite);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--anthracite);
    border: 2px solid var(--anthracite);
}

.btn-secondary:hover {
    background: var(--anthracite);
    color: var(--pure-white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Hero Image Section */
.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-heavy);
}

.floating-card {
    position: absolute;
    background: var(--pure-white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(120, 160, 64, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.top-left {
    top: -24px;
    left: -24px;
}

.floating-card.bottom-right {
    bottom: -24px;
    right: -24px;
}

.floating-card.mid-left {
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    animation-delay: -2s;
}

.floating-card.top-right {
    top: 25%;
    right: -32px;
    animation-delay: -4s;
}

.card-flag {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--pure-white);
}

.card-flag.de {
    background: var(--anthracite);
}

.card-flag.pl {
    background: var(--grass-green);
}

.card-flag.euro {
    background: var(--grass-green);
}

.card-flag.lvt {
    background: var(--anthracite);
}

.card-flag.tiles {
    background: linear-gradient(135deg, #78a040, #5a7830);
    color: white;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--anthracite);
    margin: 0 0 4px 0;
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-dark);
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--anthracite);
    margin-bottom: 16px;
}

.highlight {
    color: var(--grass-green);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card.green {
    border-top: 4px solid var(--grass-green);
}

.service-card.dark {
    border-top: 4px solid var(--anthracite);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--anthracite);
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--anthracite);
}

.about-paragraphs {
    margin-bottom: 48px;
}

.about-paragraphs p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--text-dark);
}

.key-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.key-stat {
    text-align: center;
}

.key-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--grass-green);
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 8px;
}

.key-stat p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-heavy);
}

.floating-info {
    position: absolute;
    background: var(--pure-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    animation: float 6s ease-in-out infinite;
}

.floating-info.top-left {
    top: -32px;
    left: -32px;
    background: var(--anthracite);
    color: var(--pure-white);
}

.floating-info.bottom-right {
    bottom: -32px;
    right: -32px;
    background: var(--grass-green);
    color: var(--anthracite);
    animation-delay: -3s;
}

.floating-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.floating-info.top-left h4 {
    color: var(--grass-green);
}

.floating-info.bottom-right h4 {
    color: var(--anthracite);
}

.info-role {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.floating-info.top-left .info-role {
    color: var(--pure-white);
}

.floating-info.bottom-right .info-role {
    color: var(--anthracite);
}

.info-expertise {
    font-size: 12px;
    margin: 0;
}

.floating-info.top-left .info-expertise {
    color: #ccc;
}

.floating-info.bottom-right .info-expertise {
    color: var(--text-dark);
}

/* Markets Section */
.markets {
    background: var(--pure-white);
    padding: 48px 0;
}

.markets .section-header h2 {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--anthracite);
}

.markets .section-header p {
    font-size: 1.125rem;
    max-width: 600px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.market-card {
    background: var(--light-gray);
    border: 1px solid rgba(120, 160, 64, 0.2);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.market-card:hover {
    background: rgba(120, 160, 64, 0.1);
    transform: scale(1.05);
}

.market-flag {
    width: 40px;
    height: 40px;
    background: var(--anthracite);
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 14px;
    font-weight: 700;
}

.market-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 4px;
}

.market-card:hover h3 {
    color: var(--grass-green);
}

.market-subtitle {
    color: var(--text-dark);
    font-size: 12px;
    margin: 0;
}

.channels-section {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 24px;
}

.channels-section h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--anthracite);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.channel {
    text-align: center;
}

.channel-icon {
    width: 48px;
    height: 48px;
    background: rgba(120, 160, 64, 0.1);
    border-radius: 12px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.channel:hover .channel-icon {
    background: rgba(120, 160, 64, 0.2);
}

.channel h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--anthracite);
    margin-bottom: 4px;
}

.channel p {
    color: var(--text-dark);
    font-size: 12px;
    margin: 0;
}



/* Contact Section */
.contact {
    background: #2d3748;
    color: var(--pure-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--pure-white);
}

.contact-info > p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    line-height: 1.6;
    color: #a0aec0;
}

.contact-details {
    display: grid;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(120, 160, 64, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.contact-item p {
    color: #a0aec0;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: #4a5568;
    padding: 32px;
    border-radius: 24px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--pure-white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 8px;
    font-size: 16px;
    color: var(--pure-white);
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--grass-green);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #a0aec0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--grass-green);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--anthracite);
    text-decoration: underline;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #a0aec0;
}

.checkbox-wrapper input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-text {
    cursor: pointer;
}

.privacy-link {
    color: var(--grass-green);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--anthracite);
}

.map-section {
    margin-top: 64px;
}

.map-container {
    background: #4a5568;
    border-radius: 24px;
    padding: 8px;
}

.map-placeholder {
    background: #2d3748;
    border-radius: 16px;
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--grass-green);
}

.map-content p {
    color: #a0aec0;
    margin-bottom: 8px;
}

.map-address {
    font-size: 14px;
    color: #718096;
}

/* Footer */
.footer {
    background: #1a202c;
    color: var(--pure-white);
    padding: 48px 0 0;
    border-top: 1px solid #2d3748;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--grass-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--anthracite);
    font-weight: 900;
    font-size: 20px;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pure-white);
    margin: 0;
}

.footer-logo p {
    font-size: 14px;
    color: #a0aec0;
    margin: 0;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--grass-green);
}

.copyright {
    margin-top: 24px;
}

.copyright p {
    font-size: 12px;
    color: #718096;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 32px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    right: 24px;
    top: 33%;
    transform: translateY(-50%);
    background: var(--grass-green);
    color: var(--pure-white);
    padding: 16px;
    border-radius: 16px 0 0 16px;
    box-shadow: var(--shadow-heavy);
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(100%);
}

.floating-contact.show {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.floating-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.floating-content p {
    font-size: 12px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin-bottom: 16px;
        animation: none !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .floating-info {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: none !important;
        margin-bottom: 16px;
    }
    
    .key-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-contact {
        right: 16px;
        top: 20%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .markets-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card,
    .floating-info {
        font-size: 14px;
        padding: 12px;
    }
    
    .footer-content {
        text-align: left;
    }
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0 4rem;
    background: var(--color-white);
    min-height: 100vh;
}

.back-nav {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-grass-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #4a7c59;
}

.back-arrow {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--color-anthracite);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.legal-content {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-anthracite);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-anthracite);
    margin: 1.5rem 0 0.5rem;
}

.info-block {
    background: var(--color-light-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-grass-green);
}

.info-block p {
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.info-block p:last-child {
    margin-bottom: 0;
}

.text-block {
    color: var(--color-text-dark);
    line-height: 1.7;
}

.text-block p {
    margin-bottom: 1rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.text-block li {
    margin-bottom: 0.5rem;
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.75rem 1rem;
}

#cookie-banner > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-left: 1rem;
}

.cookie-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.cookie-toggle-slider {
    width: 2.75rem;
    height: 1.5rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
    position: relative;
    transition: background-color 0.3s ease;
}

.cookie-toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: white;
    border-radius: 9999px;
    height: 1.25rem;
    width: 1.25rem;
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: hsl(120, 60%, 40%);
}

.cookie-toggle input:checked + .cookie-toggle-slider::after {
    transform: translateX(1.25rem);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .info-block {
        padding: 1rem;
    }
    
    #cookie-banner {
        padding: 0.5rem;
    }
    
    #cookie-banner > div {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}