/* Base Styles */
:root {
    /* Tetrad color scheme */
    --primary-color: #0057B8;     /* Primary blue */
    --primary-dark: #003d7a;      /* Darker blue */
    --secondary-color: #FFB800;   /* Yellow-orange */
    --secondary-dark: #cc9300;    /* Darker yellow-orange */
    --tertiary-color: #E3170A;    /* Red */
    --tertiary-dark: #b31308;     /* Darker red */
    --quaternary-color: #2AAA8A;  /* Teal */
    --quaternary-dark: #1e7861;   /* Darker teal */
    
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --background-color: #F5F5F5;
    --border-color: #DDDDDD;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    
    --heading-font: 'Archivo Black', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    --transition-speed: 0.3s;
    --bezier-curve: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Global Styles */
body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    p {
        font-size: 1.05rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
}

@media screen and (min-width: 1024px) {
    p {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 1.875rem;
    }
}

a {
    color: var(--primary-color);
    transition: color var(--transition-speed) var(--bezier-curve);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.read-more {
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.5rem;
    padding-bottom: 2px;
    transition: all var(--transition-speed) var(--bezier-curve);
}

.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) var(--bezier-curve);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover::after {
    width: 100%;
}

/* Button Styles */
.button, 
button, 
input[type="submit"] {
    font-family: var(--body-font);
    font-weight: 500;
    transition: all var(--transition-speed) var(--bezier-curve);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button:hover, 
button:hover, 
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button:active, 
button:active, 
input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button.is-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.button.is-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button.is-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

.button.is-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.button.is-tertiary {
    background-color: var(--tertiary-color);
    color: var(--light-color);
    border-color: var(--tertiary-color);
}

.button.is-tertiary:hover {
    background-color: var(--tertiary-dark);
    border-color: var(--tertiary-dark);
}

.button.is-outlined {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button.is-outlined:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.button.is-outlined.is-light {
    border-color: var(--light-color);
    color: var(--light-color);
}

.button.is-outlined.is-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.button.is-large {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
}

/* Section Styles */
.section {
    padding: 3rem 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
    .section {
        padding: 4rem 2rem;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
}

@media screen and (min-width: 1024px) {
    .section {
        padding: 5rem 2rem;
    }
    
    .section-title {
        margin-bottom: 3.5rem;
    }
}

/* Header/Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all var(--transition-speed) var(--bezier-curve);
}

.navbar.is-scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-item {
    font-weight: 500;
    transition: color var(--transition-speed) var(--bezier-curve);
    padding: 0.75rem 1rem;
}

.navbar-item:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.navbar-burger {
    width: 3.25rem;
    height: 3.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.05);
    transition: transform 0.8s var(--bezier-curve);
}

.hero:hover .hero-background {
    transform: scale(1);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    z-index: 1;
    padding: 3rem 1.5rem;
}

.hero .title,
.hero .subtitle,
.hero .hero-description {
    color: var(--light-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .hero .title {
        font-size: 3.5rem;
    }
    
    .hero .subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 1024px) {
    .hero .title {
        font-size: 4rem;
    }
    
    .hero .subtitle {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Features Section */
.features-section {
    background-color: var(--light-color);
}

.feature-card {
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve), 
                box-shadow var(--transition-speed) var(--bezier-curve);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.feature-card .card-image {
    overflow: hidden;
    width: 100%;
}

.image-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card img {
    transition: transform 0.6s var(--bezier-curve);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-card .title {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Statistics Section */
.statistics-section {
    background-color: var(--background-color);
    position: relative;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 0;
}

.stat-box {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    height: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 2rem;
}

.stat-box:hover {
    transform: translateY(-7px);
    box-shadow: var(--hover-shadow);
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* Process Section */
.process-section {
    background-color: var(--light-color);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    left: 0;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border: 4px solid var(--light-color);
    border-radius: 50%;
    top: 15px;
    right: -12px;
    z-index: 2;
    transition: all var(--transition-speed) var(--bezier-curve);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.2);
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -12px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.timeline-content .title {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-marker {
        left: 20px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        left: 20px;
    }
}

/* Customer Stories Section */
.stories-section {
    background-color: var(--background-color);
}

.story-card {
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.story-card .card-image {
    overflow: hidden;
    width: 100%;
}

.story-card img {
    transition: transform 0.6s var(--bezier-curve);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-card:hover img {
    transform: scale(1.05);
}

.story-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.story-card .title {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.story-card .subtitle {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Resources Section */
.resources-section {
    background-color: var(--light-color);
}

.resource-card {
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.resource-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--hover-shadow);
}

.resource-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-card .title {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-color);
    position: relative;
}

.testimonial-card {
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    background-color: var(--light-color);
    margin-bottom: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--hover-shadow);
}

.testimonial-card .media {
    margin-bottom: 1rem;
}

.testimonial-card .media-left {
    margin-right: 1rem;
}

.testimonial-card .image.is-64x64 {
    height: 64px;
    width: 64px;
}

.testimonial-card .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.testimonial-card .title {
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.testimonial-card .subtitle {
    color: var(--primary-color);
    font-weight: 500;
}

.testimonial-card .content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.rating {
    color: var(--secondary-color);
    margin-top: 1rem;
}

.rating .icon {
    margin-right: 2px;
}

/* Team Section */
.team-section {
    background-color: var(--light-color);
}

.instructor-card {
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.instructor-card .card-image {
    overflow: hidden;
    width: 100%;
}

.instructor-card img {
    transition: transform 0.6s var(--bezier-curve);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.instructor-card:hover img {
    transform: scale(1.05);
}

.instructor-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.instructor-card .title {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.instructor-card .subtitle {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Behind the Scenes Section */
.behind-scenes-section {
    background-color: var(--background-color);
}

.behind-scenes-section .image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
}

.behind-scenes-section .image-container:hover {
    transform: translateY(-7px);
    box-shadow: var(--hover-shadow);
}

.behind-scenes-section img {
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--bezier-curve);
    object-fit: cover;
}

.behind-scenes-section .image-container:hover img {
    transform: scale(1.05);
}

.behind-scenes-section .content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
    position: relative;
}

.contact-section form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
}

.contact-section form:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.contact-info {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.map-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.field {
    margin-bottom: 1.5rem;
}

.label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input, 
.textarea, 
.select select {
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    width: 100%;
    transition: border-color var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
}

.input:focus, 
.textarea:focus, 
.select select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 87, 184, 0.2);
}

.input:hover, 
.textarea:hover, 
.select select:hover {
    border-color: #b5b5b5;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: var(--light-color);
    opacity: 0.8;
    transition: all var(--transition-speed) var(--bezier-curve);
}

.footer a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
}

.social-links a {
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: all var(--transition-speed) var(--bezier-curve);
}

.social-links a:hover {
    transform: translateX(5px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2rem;
}

/* Accordion Styles */
.accordion {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: var(--light-color);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed) var(--bezier-curve);
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header .title {
    margin-bottom: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform var(--transition-speed) var(--bezier-curve);
}

.accordion.is-active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    background-color: var(--light-color);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--bezier-curve), 
                padding 0.5s var(--bezier-curve);
}

.accordion.is-active .accordion-content {
    padding: 1rem;
}

/* Success Page */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.success-message {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    width: 100%;
}

.success-icon {
    display: inline-block;
    margin: 0 auto;
}

.success-icon img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Privacy and Terms Pages */
.privacy-section,
.terms-section {
    padding-top: 100px;
}

.privacy-section .content,
.terms-section .content {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

/* Award Cards */
.award-card {
    text-align: center;
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.award-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--hover-shadow);
}

.award-image {
    width: 150px;
    height: auto;
    margin: 0 auto;
    transition: transform 0.5s var(--bezier-curve);
}

.award-card:hover .award-image {
    transform: scale(1.1) rotate(5deg);
}

/* Value Cards */
.value-card {
    height: 100%;
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--hover-shadow);
}

/* Cookie Consent */
#cookieConsent {
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--light-color);
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    text-align: center;
}

#acceptCookies {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color var(--transition-speed) var(--bezier-curve);
}

#acceptCookies:hover {
    background-color: var(--primary-dark);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s var(--bezier-curve) forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 1s var(--bezier-curve) 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s var(--bezier-curve) 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 1s var(--bezier-curve) 0.6s forwards;
    opacity: 0;
}

/* Contact Page Specific */
.contact-page-section {
    padding-top: 100px;
}

.contact-info-container {
    height: 100%;
}

.office-info {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) var(--bezier-curve),
                box-shadow var(--transition-speed) var(--bezier-curve);
    margin-bottom: 1.5rem;
}

.office-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* Utility Classes */
.has-text-primary {
    color: var(--primary-color) !important;
}

.has-text-secondary {
    color: var(--secondary-color) !important;
}

.has-text-tertiary {
    color: var(--tertiary-color) !important;
}

.has-text-quaternary {
    color: var(--quaternary-color) !important;
}

.has-text-dark {
    color: var(--dark-color) !important;
}

.has-text-light {
    color: var(--light-color) !important;
}

.has-background-primary {
    background-color: var(--primary-color) !important;
}

.has-background-secondary {
    background-color: var(--secondary-color) !important;
}

.has-background-tertiary {
    background-color: var(--tertiary-color) !important;
}

.has-background-quaternary {
    background-color: var(--quaternary-color) !important;
}

.has-background-dark {
    background-color: var(--dark-color) !important;
}

.has-background-light {
    background-color: var(--light-color) !important;
}

.has-shadow {
    box-shadow: var(--card-shadow) !important;
}

.has-radius {
    border-radius: 8px !important;
}

.is-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.has-margin-bottom {
    margin-bottom: 2rem !important;
}

.has-padding {
    padding: 1.5rem !important;
}