:root {
 --primary-color: #ff00ff; /* Hot Pink */
 --secondary-color: #00ffff; /* Electric Blue */
 --accent-color: #ffff00; /* Yellow */
 --bg-color: #f0f0f0;
 --bg-alt-color: #e0e0e0;
 --text-color: #000000;
 --white: #ffffff;
 --border-thickness: 4px;
 --radius: 0px;
 --font-pixel: 'Press Start 2P', cursive;
 --font-display: 'VT323', monospace;
 --transition: all 0.3s ease;
}

*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

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

body {
 font-family: var(--font-display);
 font-size: 1.5rem;
 line-height: 1.6;
 color: var(--text-color);
 background-color: var(--bg-color);
 background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d1d1d1' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

}

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

h1, h2, h3, h4 {
 font-family: var(--font-pixel);
 font-weight: normal;
 line-height: 1.3;
 text-transform: uppercase;
 color: var(--text-color);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p {
 margin-bottom: 1rem;
}

a {
 color: var(--primary-color);
 text-decoration: underline;
 transition: var(--transition);
}
a:hover {
 color: var(--secondary-color);
 background: var(--accent-color);
}

img {
 max-width: 100%;
 height: auto;
 display: block;
 border: var(--border-thickness) solid var(--text-color);
}

.text-center { text-align: center; }
.section { padding: 80px 0; }
.bg-alt { background-color: var(--bg-alt-color); }

/* --- Header & Nav --- */
.header {
 background-color: var(--white);
 border-bottom: var(--border-thickness) solid var(--text-color);
 position: sticky;
 top: 0;
 z-index: 1000;
}
.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 90px;
}
.nav-logo {
 font-family: var(--font-pixel);
 font-size: 1.5rem;
 color: var(--text-color);
 text-decoration: none;
 background: var(--accent-color);
 padding: 10px;
 border: var(--border-thickness) solid var(--text-color);
 box-shadow: 4px 4px 0 var(--text-color);
}
.nav-logo:hover {
 transform: translate(2px, 2px);
 box-shadow: 2px 2px 0 var(--text-color);
}
.nav-links {
 display: flex;
 list-style: none;
 gap: 10px;
}
.nav-links a {
 font-family: var(--font-pixel);
 font-size: 0.9rem;
 padding: 10px 15px;
 color: var(--text-color);
 text-decoration: none;
 border: 2px solid transparent;
 transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
 background: var(--secondary-color);
 color: var(--text-color);
 border: 2px solid var(--text-color);
}
.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 30px;
 height: 4px;
 background: var(--text-color);
 margin: 6px 0;
 transition: var(--transition);
}

/* --- Hero --- */
.hero {
 background-color: var(--secondary-color);
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 100px 0;
 position: relative;
 overflow: hidden;
 border-bottom: var(--border-thickness) solid #000;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
 font-size: clamp(2rem, 6vw, 4rem);
 text-shadow: 4px 4px 0 var(--primary-color), 8px 8px 0 var(--accent-color);
 margin-bottom: 1rem;
}
.hero-subtitle {
 font-size: 1.5rem;
 background: var(--white);
 padding: 10px;
 display: inline-block;
 border: 2px solid var(--text-color);
}
.hero-shape {
 position: absolute;
 background: var(--primary-color);
}
.hero-shape.shape-1 { width: 150px; height: 150px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); top: 10%; left: 5%; transform: rotate(-15deg); }
.hero-shape.shape-2 { width: 80px; height: 80px; background: var(--accent-color); border-radius: 50%; bottom: 15%; right: 10%; }
.hero-shape.shape-3 { width: 200px; height: 30px; bottom: 30%; left: -50px; transform: rotate(20deg); background: var(--white);}

/* --- Buttons --- */
.btn {
 font-family: var(--font-pixel);
 font-size: 1.1rem;
 text-decoration: none;
 padding: 15px 30px;
 border: var(--border-thickness) solid var(--text-color);
 cursor: pointer;
 display: inline-block;
 transition: var(--transition);
 box-shadow: 4px 4px 0 var(--text-color);
 text-transform: uppercase;
}
.btn-primary {
 background: var(--primary-color);
 color: var(--text-color);
}
.btn-primary:hover {
 background: var(--accent-color);
}
.btn:hover {
 transform: translate(2px, 2px);
 box-shadow: 2px 2px 0 var(--text-color);
}
.btn-secondary {
 background: var(--secondary-color);
 color: var(--text-color);
}
.btn-secondary:hover {
 background: var(--primary-color);
}

/* --- Section --- */
.section-header {
 text-align: center;
 margin-bottom: 50px;
}
.section-title {
 margin-bottom: 1rem;
 color: var(--primary-color);
 text-shadow: 2px 2px 0 var(--text-color);
}
.section-subtitle {
 font-size: 1.5rem;
 max-width: 800px;
 margin: 0 auto;
}
.page-header-section {
 padding: 60px 0;
 background: var(--accent-color);
 border-bottom: var(--border-thickness) solid var(--text-color);
}
.page-title {
 font-size: 3rem;
 text-shadow: 3px 3px 0 var(--secondary-color);
}
.page-subtitle {
 font-size: 1.5rem;
}

/* --- Cards --- */
.grid-2, .grid-3, .grid-4 {
 display: grid;
 gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
 background: var(--white);
 border: var(--border-thickness) solid var(--text-color);
 padding: 20px;
 display: flex;
 flex-direction: column;
}
.card-title {
 color: var(--secondary-color);
 margin-bottom: 15px;
}
.card-text { font-size: 1.2rem; flex-grow: 1; }
.card-button {
 margin-top: auto;
 align-self: flex-start;
 font-family: var(--font-pixel);
 font-size: 0.9rem;
 padding: 10px 20px;
 background: var(--accent-color);
 color: var(--text-color);
 text-decoration: none;
 border: 2px solid var(--text-color);
}
.card-button:hover {
 background: var(--primary-color);
}
.card-img {
 margin-bottom: 1rem;
 height: 200px;
 object-fit: cover;
}

.feature-card {
 background: var(--white);
 border: var(--border-thickness) solid var(--text-color);
 padding: 20px;
 text-align: center;
}
.feature-icon-wrapper {
 width: 80px;
 height: 80px;
 margin: 0 auto 20px;
 background: var(--secondary-color);
 border: var(--border-thickness) solid var(--text-color);
 clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
 display: flex;
 align-items: center;
 justify-content: center;
}
.feature-icon {
 font-size: 2.5rem;
}

/* --- About Page --- */
.about-us-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 align-items: center;
}
.about-us-image img {
 border: var(--border-thickness) solid var(--text-color);
}

.team-card {
 background: var(--white);
 border: var(--border-thickness) solid var(--text-color);
 padding: 20px;
 text-align: center;
}
.team-img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 margin: 0 auto 15px;
 object-fit: cover;
 filter: grayscale(100%) contrast(1.2);
 border-color: var(--primary-color);
}
.team-name { color: var(--primary-color); margin-bottom: 5px; font-size: 1.2rem;}
.team-title { font-family: var(--font-display); font-size: 1.2rem; color: #555; margin-bottom: 10px;}
.team-bio { font-size: 1rem; }
.values-grid { gap: 15px; }
.value-card {
 background: var(--white);
 border: 2px solid var(--text-color);
 padding: 20px;
 text-align: center;
}
.value-card h4 {
 color: var(--text-color);
 font-size: 1rem;
}

/* --- Testimonials --- */
.testimonial-wrapper {
 max-width: 700px;
 margin: 0 auto;
 background: var(--white);
 border: var(--border-thickness) solid var(--text-color);
 padding: 30px;
 position: relative;
}
.testimonial blockquote {
 border: none;
 padding: 0;
 margin: 0;
}
.testimonial blockquote p {
 font-size: 1.5rem;
 margin-bottom: 1.5rem;
}
.testimonial blockquote footer {
 font-family: var(--font-pixel);
 font-size: 1rem;
 color: var(--primary-color);
}
.testimonial-img {
 position: absolute;
 top: -40px;
 left: 50%;
 transform: translateX(-50%);
 width: 80px;
 height: 80px;
 border-radius: 50%;
 border-color: var(--secondary-color);
 object-fit: cover;
}

/* --- CTA Section --- */
.cta-section .section-title {
 color: var(--text-color);
 text-shadow: 2px 2px 0 var(--primary-color);
}
.cta-section .btn {
 margin-top: 20px;
}

/* --- Contact Page --- */
.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
}
.contact-form-wrapper h2, .contact-info h2 {
 text-align: left;
}
.contact-form .form-group {
 margin-bottom: 20px;
}
.contact-form label {
 display: block;
 font-family: var(--font-pixel);
 font-size: 1rem;
 margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
 width: 100%;
 padding: 15px;
 font-family: var(--font-display);
 font-size: 1.2rem;
 border: var(--border-thickness) solid var(--text-color);
 background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
 outline: none;
 background: var(--accent-color);
}
.contact-info .contact-item {
 margin-bottom: 20px;
 background: var(--white);
 padding: 15px;
 border: var(--border-thickness) solid var(--text-color);
}
.contact-info .contact-item h4 {
 color: var(--primary-color);
 margin-bottom: 5px;
}
.map-section {
 padding-bottom: 0;
}
.map-container {
 border: var(--border-thickness) solid var(--text-color);
 line-height: 0;
 margin-top: 30px;
}
.map-container iframe {
 filter: grayscale(100%) contrast(1.2);
}

/* FAQ */
.faq-container {
 max-width: 800px;
 margin: auto;
}
.faq-item {
 background: var(--white);
 border: var(--border-thickness) solid var(--text-color);
 margin-bottom: 15px;
}
.faq-question {
 font-family: var(--font-pixel);
 font-size: 1.2rem;
 padding: 20px;
 cursor: pointer;
 position: relative;
 list-style: none;
}
.faq-question::-webkit-details-marker {
 display: none;
}
.faq-question::after {
 content: '+';
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 font-size: 2rem;
 color: var(--primary-color);
}
.faq-item[open] .faq-question::after {
 content: '-';
}
.faq-answer {
 padding: 0 20px 20px 20px;
 font-size: 1.2rem;
}

/* --- Footer --- */
.footer {
 background: var(--accent-color);
 color: var(--text-color);
 padding: 50px 0 20px;
 margin-top: 80px;
 border-top: var(--border-thickness) solid var(--text-color);
 font-size: 1.2rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 30px;
 margin-bottom: 40px;
}
.footer-logo {
 font-family: var(--font-pixel);
 font-size: 1.3rem;
 color: var(--text-color);
 text-decoration: none;
 display: inline-block;
 margin-bottom: 10px;
}
.footer-heading {
 font-family: var(--font-pixel);
 font-size: 1rem;
 margin-bottom: 15px;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 10px;
}
.footer-links a {
 text-decoration: none;
 color: var(--text-color);
}
.footer-bottom {
 border-top: 2px solid var(--text-color);
 padding-top: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 1rem;
}
.footer-legal-links a {
 margin-left: 20px;
 text-decoration: none;
 color: var(--text-color);
}

/* --- Legal Pages & Cookie Table --- */
.legal-content h2, .legal-content h3 {
 margin-top: 2rem;
 margin-bottom: 1rem;
}
.legal-content h2 { font-size: 1.5rem; color: var(--primary-color); }
.legal-content h3 { font-size: 1.2rem; color: var(--secondary-color); }
.legal-content ul {
 list-style-position: inside;
 margin-left: 20px;
 margin-bottom: 1rem;
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 2rem;
 font-size: 1.2rem;
}
.cookie-table th, .cookie-table td {
 border: 2px solid var(--text-color);
 padding: 10px;
 text-align: left;
}
.cookie-table thead {
 background: var(--secondary-color);
 font-family: var(--font-pixel);
 font-size: 1rem;
}

/* --- Cookie Banner --- */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--white);
 border-top: var(--border-thickness) solid var(--text-color);
 padding: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 z-index: 2000;
 display: none;
 gap: 20px;
}
#cookie-banner p {
 margin: 0;
 font-size: 1.2rem;
}
#cookie-banner div {
 display: flex;
 gap: 10px;
}
#cookie-banner .btn {
 padding: 10px 15px;
 font-size: 0.9rem;
 box-shadow: 2px 2px 0 var(--text-color);
}
#cookie-banner .btn:hover {
 transform: translate(1px, 1px);
 box-shadow: 1px 1px 0 var(--text-color);
}

/* --- Responsive --- */
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: 1fr 1fr; }
 .about-us-content { grid-template-columns: 1fr; }
 .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 h1 { font-size: 2rem; }
 h2 { font-size: 1.5rem; }
 body { font-size: 1.2rem; }
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: 0;
 bottom: 0;
 width: 100%;
 background: var(--accent-color);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 30px;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-links a {
 font-size: 1.5rem;
 }
 .grid-2, .grid-3 { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
 #cookie-banner { flex-direction: column; text-align: center; }
}

/* Nav toggle animation */
.nav-toggle.active span:nth-child(1) {
 transform: translateY(10px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
 opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
 transform: translateY(-10px) rotate(-45deg);
}