:root {
--primary-color: #A1A8B3;
--secondary-color: #C6CBD4;
--tertiary-color: #EAEDEF;
--text-dark: #2c3e50;
--text-light: #ffffff;
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
--gradient-accent: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--tertiary-color);
}
header {
background: var(--gradient-primary);
min-height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
position: relative;
box-shadow: 0 4px 20px rgba(161, 168, 179, 0.3);
backdrop-filter: blur(10px);
}
.logo-container {
display: flex;
align-items: center;
z-index: 100;
position: relative;
}
.logo-container img {
height: 45px;
width: auto;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
transition: transform 0.3s ease;
}
.logo-container img:hover {
transform: scale(1.05);
}
.nav-container {
display: flex;
align-items: center;
gap: 2rem;
z-index: 10;
}
.nav-container a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: clamp(0.9rem, 2vw, 1.1rem);
padding: 0.8rem 1.2rem;
border-radius: 25px;
transition: all 0.3s ease;
position: relative;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
white-space: nowrap;
}
.nav-container a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nav-container a:active {
transform: translateY(0);
}
@media (max-width: 768px) {
header {
flex-direction: column;
padding: 1rem;
min-height: 120px;
gap: 1rem;
}
.nav-container {
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.nav-container a {
font-size: 0.9rem;
padding: 0.6rem 1rem;
}
}
@media (max-width: 480px) {
.nav-container {
gap: 0.5rem;
}
.nav-container a {
font-size: 0.8rem;
padding: 0.5rem 0.8rem;
}
}
footer {
background: var(--gradient-primary);
color: var(--text-light);
padding: 3rem 2rem 1.5rem;
margin-top: auto;
position: relative;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
pointer-events: none;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
position: relative;
z-index: 1;
}
.footer-section h3 {
color: var(--text-light);
margin-bottom: 1rem;
font-size: 1.3rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section p,
.footer-section a {
color: var(--text-light);
text-decoration: none;
margin-bottom: 0.5rem;
display: block;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section a:hover {
color: var(--tertiary-color);
transform: translateX(5px);
}
.footer-contact {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 15px;
backdrop-filter: blur(5px);
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.3);
color: var(--text-light);
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-consent {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: var(--gradient-primary);
color: var(--text-light);
padding: 1.5rem;
border-radius: 15px;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
z-index: 1000;
display: none;
backdrop-filter: blur(10px);
}
.cookie-consent.show {
display: block;
}
.cookie-consent p {
margin-bottom: 1rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.cookie-btn {
background: rgba(255, 255, 255, 0.2);
color: var(--text-light);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 0.6rem 1.2rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.cookie-consent {
left: 10px;
right: 10px;
bottom: 10px;
}
.cookie-buttons {
justify-content: center;
}
}
.cookie-policy-container {
width: 100%;
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
font-family: Arial, sans-serif;
line-height: 1.6;
}
.policy-section {
background-color: #EAEDEF;
border-radius: 12px;
padding: 30px;
margin-bottom: 25px;
box-shadow: 0 4px 12px rgba(161, 168, 179, 0.15);
}
.policy-section-title {
color: #A1A8B3;
font-size: 22px;
margin-bottom: 20px;
border-bottom: 2px solid #C6CBD4;
padding-bottom: 10px;
}
.policy-content {
color: #333;
font-size: 16px;
}
.cookie-highlight {
background-color: #C6CBD4;
color: #333;
padding: 10px;
border-radius: 8px;
margin: 15px 0;
}
@media screen and (max-width: 768px) {
.cookie-policy-container {
padding: 20px 15px;
}
.policy-section {
padding: 20px;
}
.policy-section-title {
font-size: 18px;
}
.policy-content {
font-size: 14px;
}
}