:root {
    --primary-navy: #1a2b4a;
    --tech-blue: #2563eb;
    --sky-blue: #3b82f6;
    --warm-orange: #f97316;
    --soft-coral: #fb923c;
    --pure-white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --border-gray: #e2e8f0;
    --success-green: #10b981;
    --warning-amber: #f59e0b;
    --error-red: #ef4444;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.iti, #phone {
    width: 100%;
}

.primary-navigation {
    background-color: var(--pure-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 200px;
    height: auto;
}

.brand-name {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 900;
    color: var(--primary-navy);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-option {
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-option:hover {
    color: var(--tech-blue);
}

.lang-option.active {
    color: var(--tech-blue);
}

.lang-separator {
    color: var(--border-gray);
}

.nav-cta-button {
    background-color: var(--tech-blue);
    color: var(--pure-white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-cta-button:hover {
    background-color: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.opening-statement {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pure-white) 100%);
}

.statement-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.statement-content {
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.statement-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.2;
    color: var(--primary-navy);
}

.statement-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--medium-gray);
    line-height: 1.8;
}

.statement-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--pure-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    color: var(--tech-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.primary-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--warm-orange);
    color: var(--pure-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.primary-action-link:hover {
    background-color: var(--soft-coral);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.statement-visual {
    position: relative;
}

.visual-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.formation-programs {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--pure-white);
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.section-header-block {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.program-card {
    background-color: var(--pure-white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .card-image {
    transform: scale(1.08);
}

.card-content {
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
}

.card-title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    color: var(--primary-navy);
}

.card-description {
    color: var(--medium-gray);
    line-height: 1.7;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--dark-gray);
}

.card-features i {
    color: var(--success-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.card-metadata {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gray);
    margin-top: auto;
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.metadata-item i {
    color: var(--tech-blue);
}

.advantages-showcase {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--light-gray);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.showcase-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.showcase-visual {
    position: relative;
}

.showcase-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.showcase-intro {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--medium-gray);
    line-height: 1.8;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--tech-blue);
    color: var(--pure-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.advantage-text {
    flex-grow: 1;
}

.advantage-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 0.75rem;
}

.advantage-description {
    color: var(--medium-gray);
    line-height: 1.7;
}

.schedule-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--pure-white);
}

.schedule-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.schedule-card {
    background-color: var(--light-gray);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.schedule-icon {
    width: 70px;
    height: 70px;
    background-color: var(--tech-blue);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.schedule-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.schedule-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

.schedule-cta {
    background-color: var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 0;
}

.schedule-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-cta-content {
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.schedule-cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.schedule-cta-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

.schedule-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--warm-orange);
    color: var(--pure-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.schedule-cta-button:hover {
    background-color: var(--soft-coral);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.methodology-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--light-gray);
}

.methodology-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.methodology-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

.methodology-intro {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--medium-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    line-height: 1.8;
}

.methodology-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.methodology-column {
    background-color: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.column-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.column-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.column-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
}

.column-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact-location {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--pure-white);
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: clamp(3rem, 6vw, 5rem);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--tech-blue);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-content {
    flex-grow: 1;
}

.detail-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.detail-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

.contact-form-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pure-white) 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.form-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.form-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact-form {
    background-color: var(--pure-white);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-navy);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--tech-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--tech-blue);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--sky-blue);
}

.form-submit {
    background-color: var(--warm-orange);
    color: var(--pure-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--soft-coral);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.site-footer {
    background-color: var(--primary-navy);
    color: var(--pure-white);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.footer-tagline {
    color: var(--medium-gray);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--tech-blue);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--medium-gray);
}

.footer-contact i {
    color: var(--tech-blue);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-copyright {
    color: var(--medium-gray);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--tech-blue);
}

.thanks-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pure-white) 100%);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.thanks-content {
    background-color: var(--pure-white);
    padding: clamp(3rem, 6vw, 5rem);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-icon {
    display: flex;
    justify-content: center;
}

.thanks-icon i {
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--success-green);
}

.thanks-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.thanks-message {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--medium-gray);
    line-height: 1.8;
}

.thanks-info {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--dark-gray);
}

.info-list i {
    color: var(--tech-blue);
    margin-top: 0.25rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.thanks-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-button.primary {
    background-color: var(--tech-blue);
    color: var(--pure-white);
}

.thanks-button.primary:hover {
    background-color: var(--sky-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.thanks-button.secondary {
    background-color: var(--light-gray);
    color: var(--primary-navy);
}

.thanks-button.secondary:hover {
    background-color: var(--border-gray);
    transform: translateY(-3px);
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.contact-text {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-details {
    color: var(--medium-gray);
    line-height: 1.8;
}

.contact-details i {
    color: var(--tech-blue);
    margin-right: 0.5rem;
}

.legal-document {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--light-gray);
}

.document-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.document-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

.document-date {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.document-content {
    background-color: var(--pure-white);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.document-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.document-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.document-content ul {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.document-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.document-content a {
    color: var(--tech-blue);
    text-decoration: underline;
}

.document-content a:hover {
    color: var(--sky-blue);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-gray);
}

.cookie-table th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--primary-navy);
}

.cookie-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.document-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.document-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--tech-blue);
    color: var(--pure-white);
}

.document-button:hover {
    background-color: var(--sky-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.document-button.secondary {
    background-color: var(--light-gray);
    color: var(--primary-navy);
}

.document-button.secondary:hover {
    background-color: var(--border-gray);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--pure-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: clamp(1.5rem, 3vw, 2rem);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--tech-blue);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn-accept {
    background-color: var(--tech-blue);
    color: var(--pure-white);
}

.cookie-btn-accept:hover {
    background-color: var(--sky-blue);
}

.cookie-btn-reject {
    background-color: var(--light-gray);
    color: var(--primary-navy);
}

.cookie-btn-reject:hover {
    background-color: var(--border-gray);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--tech-blue);
    border: 2px solid var(--tech-blue);
}

.cookie-btn-settings:hover {
    background-color: var(--tech-blue);
    color: var(--pure-white);
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-settings-modal.visible {
    opacity: 1;
    pointer-events: all;
}

.cookie-settings-content {
    background-color: var(--pure-white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(2rem, 4vw, 3rem);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cookie-settings-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.cookie-settings-close:hover {
    color: var(--primary-navy);
}

.cookie-category {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-gray);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--pure-white);
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--tech-blue);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-controls {
        width: 100%;
        justify-content: space-between;
    }

    .statement-grid {
        grid-template-columns: 1fr;
    }

    .showcase-layout {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .schedule-cta {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .methodology-columns {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-button {
        width: 100%;
    }
}