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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f5f2e8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.contact-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.contact-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
}

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 60px 0;
    background-color: #f5f2e8;
    margin-bottom: 80px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    margin-bottom: 80px;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.content-text p {
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    margin-top: 24px;
}

.expertise-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid #f5f2e8;
}

.expertise-list li::before {
    content: "•";
    color: #1a1a1a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 12px;
}

.content-image {
    justify-self: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background-color: #f5f2e8;
    border: 2px dashed #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-item {
    padding: 32px;
    background-color: #f5f2e8;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.5;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text {
    text-align: left;
    color: #4a4a4a;
    line-height: 1.6;
}

.policy-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.policy-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.policy-text br {
    line-height: 2;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand .logo-section {
    margin-bottom: 16px;
}

.footer-brand .brand-name {
    color: #ffffff;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text p {
    margin: 0;
    color: #cccccc;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background-color: #f5f2e8;
}

.cookie-decline {
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #4a4a4a;
}

.cookie-decline:hover {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-reject {
    background-color: transparent;
    color: #cccccc;
    border: 1px solid #4a4a4a;
}

.cookie-reject:hover {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-customize {
    background-color: #4a4a4a;
    color: #ffffff;
    border: 1px solid #4a4a4a;
}

.cookie-customize:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-link {
    color: #cccccc;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #ffffff;
}

/* Cookie Preferences */
.cookie-preferences {
    display: none;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 24px;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #4a4a4a;
}

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

.cookie-preferences h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.cookie-category {
    margin-bottom: 16px;
    padding: 12px;
    background-color: #f5f2e8;
    border-radius: 4px;
}

.cookie-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.cookie-name {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-description {
    font-size: 14px;
    color: #4a4a4a;
    margin-left: 24px;
}

.cookie-pref-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
}

.cookie-pref-actions .cookie-btn {
    padding: 8px 16px;
    min-width: auto;
}
/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 400px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
        justify-content: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 20px 0 60px;
    }
    
    .page-hero {
        padding: 40px 0;
        margin-bottom: 60px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .content-section {
        margin-bottom: 60px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
}