:root {
    --primary-color: #2C2233;
    --secondary-color: #9D9FC6;
    --background-color: #F9F0E6;
    --header-background-color: #F8F5EF;
  }

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

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
}

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

/* Mobile-First Header */
.header {
    background-color: var(--header-background-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container, .logo, .logo a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 35px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    height: 100dvh;
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Disable scrolling when mobile menu is active */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 50px;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 20px 0;
    margin: 0 0 -5px 0;
    transition: color 0.3s ease;
}

.nav-link-active {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 10px 7px 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

/* Mobile-First Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/hero_background.jpg') no-repeat center center;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 245, 239, 0.9);
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero .container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-flourish {
    margin: 30px 0;
    background: url('/assets/img/bracket.svg') no-repeat center center;
    width: 100%;
    height: 0;
    padding-bottom: 12%;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-flourish-bottom {
    transform: rotate(180deg);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 5px 0 10px 0;
    color: var(--primary-color);
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Josefin Slab', serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-cta-complete {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-complete:hover {
    transform: translateY(3px);
}

.hero-cta-text {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.hero-bottom {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero-line {
    margin-top: 5px;
}



.chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--background-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

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

.profile-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-frame .hero-flourish {
    margin: 5px;
}

.profile-img {
    width: 90%;
    height: auto;
    border-radius: 8px;
}

.about-text {
    max-width: 600px;
    text-align: center;
}

.about-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-highlight {
    font-weight: 700;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 0;
    background-color: var(--background-color);
    text-align: center;
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 120px 0 60px;
    background-color: var(--background-color);
    text-align: center;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.portfolio-events {
    padding: 0 0 80px 0;
    background-color: var(--background-color);
}

.portfolio-event {
    margin-bottom: 80px;
    text-align: center;
}

.portfolio-event:last-child {
    margin-bottom: 0;
}

.event-date {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-names {
    font-family: 'Josefin Slab', serif;
    letter-spacing: 0.14em;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.event-testimonial {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.testimonial-quote {
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-color);
    font-style: italic;
}

.quote-mark {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    position: absolute;
    top: -10px;
    font-family: 'Josefin Slab', serif;
    letter-spacing: 0.14em;
    font-style: normal;
}

.quote-mark:first-child {
    left: 0;
}

.quote-mark:last-child {
    right: 0;
}

.testimonial-quote p {
    margin: 0;
    padding: 0 30px;
}

.event-gallery {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.gallery-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    width: max-content;
    transition: transform 0.5s ease-in-out;
}

.gallery-image {
    flex: 0 0 200px;
    height: 150px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Gallery pagination dots */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    opacity: 1;
    transform: scale(1.5);
}

.pagination-dot:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.2;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.services-grid-section {
    padding: 0 0 80px 0;
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-item {
    text-align: center;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
}

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

.service-title {
    font-family: 'Josefin Slab', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.service-price {
    font-family: 'Josefin Slab', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.14em;
}

.services-disclaimer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.services-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
}

.cta-button {
    margin-top: 20px;
}

.how-it-works {
    padding: 0 0;
    background-color: var(--background-color);
}

.step {
    padding: 80px 20px 0 20px;
}

.step:last-child {
    margin-bottom: 40px;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

/* Mobile: Reset step-2 order to default (text first, then image) */
.step-2 .step-text {
    order: 1;
}

.step-2 .step-images {
    order: 2;
}

.step-number {
    font-family: 'Josefin Slab', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.14em;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.14em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: var(--primary-color);
}

.step-cta:hover {
    transform: translateY(2px);
}

.btn-secondary, .btn-secondary-inverted {
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.14em;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px 10px 8px 10px;
}

.btn-secondary:hover, .btn-secondary-inverted:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.btn-secondary-inverted {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: 2px solid var(--background-color);
    margin-bottom: 30px;
}

.btn-secondary-inverted:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
}

/* Step Images - Unified */
.step-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

/* Mobile-First Call to Action Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0 30px 0;
    text-align: center;
}

.cta-title {
    color: var(--background-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding: 0 20px;
    line-height: 1.2em;
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    margin: 0;
}

.cta-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-option:last-child {
    border-bottom: none;
}

.cta-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    margin-top: 20px;
}

.cta-link {
    color: var(--background-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.14em;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-family: 'Josefin Slab', serif;
    letter-spacing: 0.14em;
}

/* Mobile-First Footer */
.footer {
    padding: 40px 0 30px;
    text-align: center;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-copyright {
    font-size: 12px;
    text-transform: uppercase;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        flex-direction: row;
        justify-content: flex-end;
        height: unset;
    }
    
    .close-menu {
        display: none;
    }
    
    .nav-link {
        display: inline;
        padding: 0;
        font-size: 14px;
        font-family: 'Josefin Sans', sans-serif;
        letter-spacing: unset;
    }

    .nav-link-home {
        display: none;
    }
    
    .btn-primary {
        margin-top: 0;
        background-color: var(--primary-color);
        color: var(--background-color);
        border: none;
        font-size: 14px;
    }
    
    .btn-primary:hover {
        background-color: var(--secondary-color);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .about-content {
        flex-direction: row;
        gap: 60px;
        text-align: left;
    }
    
    .about-image {
        flex: 0 0 300px;
        max-width: 300px;
    }
    
    .about-text {
        flex: 1;
        max-width: none;
        text-align: left;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .services-title {
        font-size: 3rem;
    }
    
    .portfolio-title {
        font-size: 3rem;
    }
    
    .event-names {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }

    .quote-mark {
        font-size: 6rem;
    }

    .quote-mark:first-child {
        left: -20px;
    }

    .quote-mark:last-child {
        right: -40px;
    }
    
    .gallery-image {
        flex: 0 0 250px;
        height: 180px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .service-item {
        padding: 30px;
    }
    
    .service-image {
        aspect-ratio: 1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .how-it-works {
        padding: 80px 0;
    }
    
    .step {
        padding: 40px 0 60px 0;
    }
    
    .step-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        text-align: left;
    }
    
    .step-2 .step-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .step-2 .step-images {
        order: 1;
    }
    
    .step-2 .step-text {
        order: 2;
    }
    
    .step-title {
        font-size: 2.2rem;
    }
    
    .step-description {
        max-width: 100%;
    }
    
    .step-image {
        max-width: 500px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-options {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0;
        max-width: 900px;
        margin: 60px auto 0 auto;
    }
    
    .cta-option {
        display: block;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0;
        text-align: center;
    }

    .cta-option:last-child {
        border-right: none;
    }
    
    .cta-option .cta-icon {
        grid-row: 2;
    }
    
    .cta-icon img {
        width: 120px;
        height: 120px;
        margin-top: 0;
    }
    
    .cta-link {
        font-size: 16px;
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        padding: 40px 20px;
        box-sizing: border-box;
        text-decoration: none;
    }

    .cta-link:hover {
        background: rgba(255,255,255,0.05);
    }
    
    .cta-link-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }
    
    .cta-link-block .cta-icon {
        margin-top: 10px;
    }
    
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-logo-img {
        height: 50px;
        margin-bottom: 20px;
    }
    
    .footer-text {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-copyright {
        font-size: 14px;
    }

    .btn-secondary-inverted {
        margin-bottom: 0;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0 30px;
    background-color: var(--background-color);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-form {
    text-align: left;
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-family: 'Josefin Slab', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    background-color: white;
    color: var(--primary-color);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.select-wrapper {
    position: relative;
}

.form-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    background-color: white;
    color: var(--primary-color);
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Form message styles */
.form-message {
    margin-bottom: 30px;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.message-icon {
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.message-text {
    flex: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.services-selection {
    padding: 0 0 80px 0;
    background-color: var(--background-color);
    text-align: center;
}

.services-selection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'Josefin Slab', serif;
}

.services-selection-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 10px), 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

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

.service-card-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(157, 159, 198, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 48px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.service-card.selected .service-card-checkmark {
    opacity: 1;
}

.service-card-label {
    font-family: 'Josefin Slab', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-align: center;
}

.submit-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 40px;
    font-family: 'Josefin Slab', serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        min-height: 0 !important;
    }

    .hero .container {
        min-height: 0 !important;
    }

    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .step-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .gallery-image {
        flex: 0 0 300px;
        height: 200px;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .service-card-label {
        font-size: 1rem;
    }
}