:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --blur: blur(20px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

.disclaimer {
    background-color: #f5f5f5;
    padding: 15px 20px;
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
    color: #666;
    border-bottom: 2px solid #e0e0e0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}
.disclaimer p {
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.disclaimer strong {
    color: #333;
    font-weight: 600;
}
@media (max-width: 768px) {
    .disclaimer {
        padding: 12px 15px;
        font-size: 10px;
        line-height: 1.5;
    }
    .disclaimer p {
        padding: 0;
    }
}
@media (max-width: 480px) {
    .disclaimer {
        padding: 10px 12px;
        font-size: 9px;
        line-height: 1.4;
    }
}
.info-spoiler {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin: 30px auto;
    max-width: 1200px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.info-spoiler-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
    user-select: none;
}
.info-spoiler-header:hover {
    background-color: #eeeeee;
}
.info-spoiler-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}
.info-spoiler-icon {
    font-size: 18px;
    color: #666;
    transition: transform 0.3s ease;
    line-height: 1;
}
.info-spoiler.active .info-spoiler-icon {
    transform: rotate(180deg);
}
.info-spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}
.info-spoiler.active .info-spoiler-content {
    max-height: 500px;
    padding: 20px;
}
.info-spoiler-text {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
.info-spoiler-text strong {
    color: #333;
    font-weight: 600;
}
@media (max-width: 768px) {
    .info-spoiler {
        margin: 20px 15px;
    }
    .info-spoiler-header {
        padding: 12px 15px;
    }
    .info-spoiler-title {
        font-size: 13px;
    }
    .info-spoiler-content {
        padding: 0 15px;
    }
    .info-spoiler.active .info-spoiler-content {
        padding: 15px;
    }
    .info-spoiler-text {
        font-size: 11px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    transition: var(--transition);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}


.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo a {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.7;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.articles-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-block;
}

.articles-btn:hover {
    background-color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

main {
    margin-top: 80px;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

.hero-section {
    min-height: calc(85vh - 120px);
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    contain: layout style;
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    margin-bottom: -50px;
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 0;
}

.title-line {
    display: flex;
    align-items: flex-start;
    color: var(--primary-color);
    letter-spacing: -10px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 12.5rem;
    font-weight: 600;
    line-height: 11.25rem;
}

.title-line:last-child {
    margin-left: 60px;
}

.registered {
    font-size: 0.6em;
    vertical-align: super;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

.hero-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.location-text {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 400;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    width: 100%;
    height: auto;
    align-self: flex-start;
    overflow: visible;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
    will-change: opacity, transform;
    backface-visibility: hidden;
    box-sizing: border-box;
}

.hero-image.visible {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

.city-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.testimonials-inline {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    min-height: 150px;
}

.testimonials-inline::-webkit-scrollbar {
    height: 4px;
}

.testimonials-inline::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 2px;
}

.testimonials-inline::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.testimonial-card-inline {
    min-width: 250px;
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
    backface-visibility: hidden;
    margin-bottom: -30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card-inline.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
    margin-bottom: 0;
}

.motivational-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonial-card-inline .testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.city-image:hover {
    transform: scale(1.05);
}

.fullscreen-image-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.fullscreen-image-wrapper {
    width: 100%;
    position: relative;
    display: block;
}

.fullscreen-image {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    -ms-interpolation-mode: nearest-neighbor;
}

.fullscreen-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    box-sizing: border-box;
}

.fullscreen-image-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    color: #ffffff;
    z-index: 1;
}

.fullscreen-image-left {
    flex: 0 0 400px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
}

.fullscreen-image-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-side-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    object-position: center;
}

.fullscreen-image-right {
    flex: 1;
    text-align: left;
}

.fullscreen-image-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.2s ease 0.4s, transform 1.2s ease 0.4s;
}

.fullscreen-image-title.visible {
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-image-text {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.2s ease 0.7s, transform 1.2s ease 0.7s;
}

.fullscreen-image-text.visible {
    opacity: 0.95;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .fullscreen-image-overlay {
        padding: 40px 20px;
    }
    
    .fullscreen-image-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .fullscreen-image-left {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
    
    .fullscreen-image-right {
        text-align: center;
    }
    
    .fullscreen-image-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .fullscreen-image-text {
        font-size: 16px;
    }
}

.text-content-section {
    padding: 100px 40px;
    scroll-behavior: smooth;
    background-color: var(--secondary-color);
}

.text-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.content-paragraph {
    font-size: 35px;
    line-height: 1.7;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: left;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-paragraph:last-child {
    margin-bottom: 0;
}

.faq-section {
    padding: 100px 40px;
    background-color: var(--secondary-color);
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.faq-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -3px;
    margin: 0;
    display: block;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.faq-section.visible .faq-title {
    opacity: 1;
    transform: translateX(0);
}

.faq-list {
    flex: 1;
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.faq-section.visible .faq-list {
    opacity: 1;
    transform: translateX(0);
}


.faq-list {
    flex: 1;
    display: block;
    width: 100%;
}

.faq-item {
    display: block;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header:hover {
    opacity: 0.7;
}

.faq-item.active .faq-header {
    opacity: 1;
}

.faq-question {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    display: block;
    flex-shrink: 0;
    margin-left: 30px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 30px 0;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.services-section {
    padding: 120px 40px;
    background-color: var(--secondary-color);
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.services-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: clamp(80px, 12vw, 180px);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -5px;
    margin: 0 0 40px 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.services-section.visible .services-title {
    opacity: 1;
    transform: translateX(0);
}

.services-description {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.6;
    color: var(--primary-color);
    max-width: 900px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.services-section.visible .services-description {
    opacity: 1;
    transform: translateY(0);
}

.brand-section {
    padding: 120px 40px;
    background-color: var(--secondary-color);
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.brand-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.brand-image-wrapper {
    flex: 0 0 500px;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.brand-section.visible .brand-image-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.brand-image:hover {
    transform: scale(1.05);
}

.brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}

.brand-section.visible .brand-content {
    opacity: 1;
    transform: translateX(0);
}

.brand-title {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -3px;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.brand-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary-color);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.motivational-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.motivational-container {
    max-width: 1200px;
    margin: 0 auto;
}

.motivational-messages {
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
}

.message-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    pointer-events: none;
}

.message-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.message-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.message-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
}

.message-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: #666;
}

.image-section {
    padding: 120px 40px;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.image-container {
    max-width: 1400px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.image-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.section-image:hover {
    transform: scale(1.02);
}

.cta-section {
    padding: 60px 40px 80px 40px;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cta-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    border: 1px solid transparent;
}

.cta-button-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.cta-button-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cta-button-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact {
    text-align: right;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 12px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--secondary-color);
    padding: 20px 40px;
    z-index: 2000;
    transform: translateY(100%);
    transition: var(--transition);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cookie-accept:hover {
    background-color: #e0e0e0;
}

.cookie-decline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-image {
        max-width: 100%;
        height: 400px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: var(--blur);
        -webkit-backdrop-filter: var(--blur);
        border-top: 1px solid var(--glass-border);
        box-shadow: 0 8px 32px 0 var(--glass-shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        align-items: flex-start;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-container {
        gap: 20px;
    }

    .header-actions {
        gap: 15px;
    }

    .articles-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-title {
        display: flex;
        flex-direction: column;
    }

    .title-line {
        font-size: clamp(3rem, 12vw, 8rem);
        line-height: clamp(2.7rem, 11vw, 7.2rem);
        letter-spacing: clamp(-4px, -2vw, -10px);
    }

    .title-line:last-child {
        margin-left: 30px;
    }

    .motivational-section {
        padding: 60px 20px;
    }

    .text-content-section {
        padding: 60px 20px;
    }

    .hero-section {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image {
        max-width: 100%;
        min-height: 400px;
    }

    .testimonials-inline {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card-inline {
        min-width: 100%;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-title {
        font-size: clamp(48px, 12vw, 80px);
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-toggle {
        font-size: 28px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .services-section {
        padding: 60px 20px;
    }

    .services-title {
        font-size: clamp(48px, 15vw, 100px);
        margin-bottom: 30px;
    }

    .services-description {
        font-size: clamp(18px, 4vw, 24px);
    }

    .brand-section {
        padding: 60px 20px;
    }

    .brand-container {
        flex-direction: column;
        gap: 40px;
    }

    .brand-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
    }

    .brand-title {
        font-size: clamp(40px, 10vw, 80px);
    }

    .brand-text {
        font-size: 16px;
    }

    .content-paragraph {
        font-size: 35px;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .cta-section {
        padding: 40px 20px 60px 20px;
    }

    .cta-container {
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .cta-button {
        width: 100%;
        padding: 14px 28px;
    }

    .fullscreen-image-section {
        width: 100%;
    }

    .image-section {
        padding: 80px 20px;
    }

    .image-wrapper {
        border-radius: 8px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.5;
    }

    .content-paragraph {
        font-size: clamp(20px, 6vw, 28px);
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 20px;
    }

    .articles-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .location-text {
        font-size: 14px;
    }

    .message-title {
        font-size: 28px;
    }

    .message-text {
        font-size: 16px;
    }

    .hero-section {
        padding: 30px 15px;
        min-height: calc(80vh - 100px);
    }

    .title-line {
        font-size: clamp(2.5rem, 15vw, 6rem);
        line-height: clamp(2.2rem, 14vw, 5.4rem);
    }

    .title-line:last-child {
        margin-left: 20px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section a,
    .footer-section p {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .cookie-consent {
        padding: 15px 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content p {
        font-size: 12px;
    }

    .cookie-accept,
    .cookie-decline {
        padding: 8px 20px;
        font-size: 13px;
    }
}


