:root { --primary-color: #2c7a7b; --secondary-color: #b2f5ea; --tertiary-color: #e6fffa; --text-dark: #1a202c; --text-light: #718096; --white: #ffffff; --border-light: #e2e8f0; --shadow-light: rgba(44, 122, 123, 0.1); --shadow-medium: rgba(44, 122, 123, 0.2); }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-dark); background: var(--white); font-size: 16px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
header { background: var(--white); border-bottom: 1px solid var(--border-light); box-shadow: 0 2px 8px var(--shadow-light); position: relative; z-index: 100; }
.header-content { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2rem; padding: 1.25rem 0; min-height: 80px; }
.logo-container { display: flex; align-items: center; gap: 1rem; z-index: 101; position: relative; }
.logo-container img { height: 45px; width: auto; display: block; border-radius: 4px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1.4rem; font-weight: 600; color: var(--primary-color); line-height: 1.2; }
.brand-tagline { font-size: 0.85rem; color: var(--text-light); font-weight: 400; }
.nav-container { justify-self: end; z-index: 99; }
.main-nav { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.main-nav a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; padding: 0.75rem 1rem; border-radius: 6px; transition: all 0.3s ease; white-space: nowrap; }
.main-nav a:hover { background: var(--tertiary-color); color: var(--primary-color); }
footer { background: var(--tertiary-color); padding: 3rem 0 2rem; margin-top: 4rem; border-top: 1px solid var(--secondary-color); }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-section h3 { color: var(--primary-color); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; border-bottom: 2px solid var(--secondary-color); padding-bottom: 0.5rem; }
.footer-logo-section { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo-section img { height: 40px; width: auto; margin-bottom: 0.75rem; border-radius: 4px; }
.company-description { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }
.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text-dark); font-size: 0.9rem; }
.contact-label { font-weight: 500; min-width: 4rem; color: var(--primary-color); }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--text-dark); text-decoration: none; font-size: 0.9rem; padding: 0.25rem 0; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--secondary-color); color: var(--text-light); font-size: 0.9rem; }
.cookie-consent { position: fixed; bottom: 2rem; left: 2rem; right: 2rem; max-width: 450px; background: var(--white); border: 2px solid var(--primary-color); border-radius: 12px; padding: 1.75rem; box-shadow: 0 8px 32px var(--shadow-medium); z-index: 1000; font-size: 0.9rem; line-height: 1.5; }
.cookie-consent.hidden { display: none; }
.cookie-content h4 { color: var(--primary-color); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.cookie-text { color: var(--text-dark); margin-bottom: 1.25rem; }
.cookie-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-btn { padding: 0.75rem 1.25rem; border: none; border-radius: 6px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; text-align: center; min-height: 44px; }
.cookie-btn.accept { background: var(--primary-color); color: var(--white); }
.cookie-btn.accept:hover { background: #234e52; }
.cookie-btn.reject { background: transparent; color: var(--text-dark); border: 2px solid var(--secondary-color); }
.cookie-btn.reject:hover { background: var(--tertiary-color); }
.cookie-policy-link { display: block; text-align: center; color: var(--primary-color); text-decoration: none; font-size: 0.85rem; padding: 0.5rem; border-radius: 4px; }

/* Internal Pages Styles */
.internal-page-section { padding: 120px 0 80px; background: var(--white); }
.internal-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.internal-title { font-size: 2.8rem; color: #1a202c; margin-bottom: 20px; font-weight: 700; text-align: center; }
.internal-subtitle { text-align: center; color: #718096; margin-bottom: 50px; font-size: 1.1rem; }
.internal-content h2 { color: var(--primary-color); margin: 40px 0 20px; font-size: 1.8rem; border-bottom: 1px solid var(--secondary-color); padding-bottom: 10px; }
.internal-content h3 { color: #1a202c; margin: 25px 0 15px; font-size: 1.3rem; }
.internal-content p { color: #4a5568; margin-bottom: 20px; line-height: 1.8; font-size: 1.05rem; }
.internal-content ul { margin-bottom: 20px; padding-left: 20px; color: #4a5568; line-height: 1.8; }
.internal-content li { margin-bottom: 10px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-card { background: var(--tertiary-color); padding: 30px; border-radius: 12px; }
.contact-card h3 { margin-top: 0; color: var(--primary-color); }

@media (max-width: 991px) {
    .header-content { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; padding: 1rem 0; }
    .nav-container { justify-self: center; }
    .main-nav { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .contact-item { justify-content: center; }
}
@media (max-width: 767px) {
    .cookie-consent { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}