 
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #015B76;
    --secondary-color: #DEBAB1;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--text-light);
    box-shadow: 0 2px 20px rgba(1, 91, 118, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.art-nouveau-curve {
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.title-line {
    display: block;
    font-weight: 400;
}

.title-line-accent {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: #555;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.hero-feature span {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-dark);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 91, 118, 0.2);
}

.hero-image {
    flex: 1;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 91, 118, 0.2);
}

.animated-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
    background: #cccccc;
    min-height: 400px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.frame-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: -1;
}

.services {
    padding: 80px 0;
    background: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(1, 91, 118, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.service-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    background: #cccccc;
    min-height: 400px;
}

.about-decoration {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text .title-decoration {
    margin: 0 0 1.5rem 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: #666;
}

.courses {
    padding: 80px 0;
    background: var(--text-light);
}

.course-block {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.course-block.reverse {
    flex-direction: row-reverse;
}

.course-image-container {
    flex: 1;
}

.course-image-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #cccccc;
    min-height: 300px;
}

.course-details {
    flex: 1;
}

.course-details h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-details p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.course-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.course-button:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(222, 186, 177, 0.3);
}

.lighting {
    padding: 80px 0;
    background: var(--bg-light);
}

.lighting-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.lighting-intro.reverse {
    flex-direction: row-reverse;
}

.lighting-image {
    flex: 1;
}

.lighting-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #cccccc;
    min-height: 300px;
}

.lighting-text {
    flex: 1;
}

.lighting-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lighting-text p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.lighting-tips {
    margin-top: 60px;
}

.lighting-tips h3 {
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: var(--primary-color);
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(1, 91, 118, 0.1);
}

.tip-number {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.tip-card h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tip-card p {
    color: #555;
    line-height: 1.7;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.gift-cards {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.gift-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.gift-text {
    flex: 1;
}

.gift-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.gift-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.gift-features {
    list-style: none;
    margin-bottom: 2rem;
}

.gift-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.gift-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.gift-image {
    flex: 1;
}

.gift-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #cccccc;
    min-height: 300px;
}

.reviews {
    padding: 80px 0;
    background: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(1, 91, 118, 0.1);
}

.review-rating {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #cccccc;
}

.review-author h4 {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--primary-color);
}

.review-author span {
    font-size: clamp(0.85rem, 1.2vw, 0.9rem);
    color: #666;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: #013d52;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 91, 118, 0.3);
}

.external-links {
    padding: 60px 0;
    background: var(--text-light);
}

.external-links h3 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 30px;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
    color: var(--text-dark);
    border: 2px solid transparent;
}

.external-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(1, 91, 118, 0.15);
}

.external-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.newsletter-form svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(0.85rem, 1.2vw, 0.9rem);
}

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--text-light);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 30px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .course-block,
    .course-block.reverse {
        flex-direction: column;
    }
    
    .lighting-intro,
    .lighting-intro.reverse {
        flex-direction: column;
    }
    
    .gift-content {
        flex-direction: column;
    }
    
    .about-stats {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 25px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: block;
    visibility: visible;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--text-light);
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-btn-accept:hover {
    background: #c9a89a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 186, 177, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}