        :root {
            --primary-color: #5e2c04;
            --secondary-color: #f7b05b;
            --accent-color: #1f6f8b;
            --dark-color: #0d0d0d;
            --light-color: #f4f4f2;
            --font-main: 'Courier New', monospace;
            --font-alt: 'Arial Narrow', sans-serif;
            --random-rotation: rotate(calc(-1deg + (var(--random) * 2deg)));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-main);
            background-color: #f9f3e6;
            color: var(--dark-color);
            overflow-x: hidden;
            line-height: 1.7;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-color);
            padding: 1.5rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid var(--secondary-color);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            color: var(--light-color);
            font-size: 1.8rem;
            font-weight: bold;
            font-family: var(--font-alt);
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--secondary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 3px;
        }
        
        nav ul li a:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/1.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-color);
            padding: 0 2rem;
            margin-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-family: var(--font-alt);
            text-transform: uppercase;
            letter-spacing: 5px;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background-color: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styles */
        section {
            padding: 6rem 2rem;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary-color);
            font-family: var(--font-alt);
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background-color: var(--secondary-color);
            margin: 1rem auto;
        }
        
        /* About Section */
        .about {
            background-color: var(--light-color);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 0 2rem;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 20px 20px 0 var(--secondary-color);
            transform: var(--random-rotation);
        }
        
        /* Services Section */
        .services {
            background-color: #fff;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-top: 5px solid var(--primary-color);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }
        
        .service-card p {
            margin-bottom: 1.5rem;
        }
        
        .service-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        /* Research Section */
        .research {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        
        .research .section-title {
            color: var(--light-color);
        }
        
        .research-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .research-item {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
            margin-bottom: 2rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .research-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }
        
        .research-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        /* Team Section */
        .team {
            background-color: var(--light-color);
        }
        
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-member {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 5px solid var(--secondary-color);
        }
        
        .team-member h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }
        
        .team-member p {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: #fff;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .testimonial {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
            margin: 1rem;
            background-color: var(--light-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            font-size: 5rem;
            color: var(--secondary-color);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
        }
        
        .testimonial p {
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: var(--accent-color);
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0;
            font-style: normal;
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            background-color: var(--primary-color);
            color: var(--light-color);
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #fff;
        }
        
        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }
        
        /* Book Section */
        .book {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://source.unsplash.com/random/1600x900/?book,psychology') no-repeat center center/cover;
            color: var(--light-color);
            text-align: center;
        }
        
        .book .section-title {
            color: var(--light-color);
        }
        
        .book-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--light-color);
            font-family: var(--font-main);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Contact Section */
        .contact {
            background-color: #fff;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        
        .contact-info p {
            margin-bottom: 1.5rem;
        }
        
        .contact-details {
            margin-top: 2rem;
        }
        
        .contact-details div {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .contact-details i {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--primary-color);
        }
        
        .contact-map {
            flex: 1;
            min-width: 300px;
            padding: 2rem;
        }
        
        .contact-map iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }
        
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            font-family: var(--font-alt);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-col ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--light-color);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Popup Styles */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--light-color);
            padding: 3rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            position: relative;
            transform: scale(0.7);
            transition: all 0.3s ease;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        .popup h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .popup p {
            margin-bottom: 2rem;
        }
        
        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }
        
        .cookie-consent.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light-color);
            border: 1px solid var(--light-color);
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes chaotic {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(5px, 5px) rotate(1deg);
            }
            50% {
                transform: translate(-5px, 3px) rotate(-1deg);
            }
            75% {
                transform: translate(3px, -5px) rotate(2deg);
            }
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }
        
        .chaotic-element {
            animation: chaotic 7s infinite ease-in-out;
        }
        
        /* Mobile Styles */
        @media (max-width: 1600px) {
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 1rem;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            nav.active {
                clip-path: circle(1600px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content,
            .contact-container {
                flex-direction: column;
            }
            
            .about-image img {
                box-shadow: 10px 10px 0 var(--secondary-color);
            }
            
            .popup-content {
                padding: 2rem 1rem;
                width: 90%;
            }
        }
        
        /* Random Elements */
        .random-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            background-color: var(--secondary-color);
            opacity: 0.3;
            z-index: -1;
            animation: chaotic 10s infinite ease-in-out;
        }
        
        .shape-1 {
            top: 20%;
            left: 5%;
            border-radius: 50%;
        }
        
        .shape-2 {
            bottom: 15%;
            right: 10%;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }
        
        .shape-3 {
            top: 40%;
            right: 15%;
            clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
        }