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

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Aleo', serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-image {
    height: 40px;
    width: auto;
    max-width: 120px;
    transition: transform 0.3s ease;
}

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

/* Fallback for missing nav logo */
.nav-logo-image:not([src]), 
.nav-logo-image[src=""],
.nav-logo-image[src*="undefined"] {
    display: none;
}

.nav-logo-image:not([src]) + .nav-logo-fallback,
.nav-logo-image[src=""] + .nav-logo-fallback,
.nav-logo-image[src*="undefined"] + .nav-logo-fallback {
    display: block;
}

.nav-logo-fallback {
    display: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 0.8;
}

.nav-logo-fallback .monk {
    display: block;
}

.nav-logo-fallback .stack {
    display: block;
    margin-left: 1rem;
}

.nav-logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Aleo', serif;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

/* Logo */
.logo {
    margin-bottom: 2rem;
    text-align: center;
}

.logo-image {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-lottie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-lottie-container:hover {
    transform: scale(1.05);
}

.logo-lottie-container lottie-player {
    width: 300px !important;
    height: auto !important;
    max-width: 100%;
}

/* Fallback for missing logo images */
.logo-image:not([src]), 
.logo-image[src=""],
.logo-image[src*="undefined"] {
    display: none;
}

.logo-image:not([src]) + .logo-fallback,
.logo-image[src=""] + .logo-fallback,
.logo-image[src*="undefined"] + .logo-fallback {
    display: block;
}

.logo-fallback {
    display: none;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 0.8;
}

.logo-fallback .monk {
    display: block;
}

.logo-fallback .stack {
    display: block;
    margin-left: 2rem;
}

/* Tagline */
.tagline {
    margin-bottom: 3rem;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

.tagline-light {
    color: #cccccc;
    margin-right: 0.5rem;
    font-family: 'Lato', sans-serif;
}

.tagline-bold {
    color: #ffffff;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

/* Call to Action Button */
.cta-button {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.cta-button:active {
    transform: translateY(0);
}

/* Our Approach Section */
.approach-section {
    background-color: #ffffff;
    color: #000000;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    width: 1224px;
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 2rem;
    height: auto;
    min-height: 596px;
}

.section-title {
    font-family: 'Aleo', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #000000;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.approach-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-item {
    margin-bottom: 2rem;
}

.approach-item h3 {
    font-family: 'Aleo', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.approach-item p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: lighter;
    line-height: 1.6;
    color: #000000;
}

.approach-item.full-width {
    grid-column: 1 / 2;
}

/* Our Collaborator Section */
.collaborator-section {
    background-color: #000000;
    color: #ffffff;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.collaborator-section .section-title {
    color: #ffffff;
}

.collaborator-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.collaborator-item {
    display: contents;
}

.collaborator-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Aleo', serif;
    grid-column: 1;
}

.collaborator-item p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    grid-column: 2;
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-section {
    background-color: #ffffff;
    color: #000000;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.industries-section .section-title {
    color: #000000;
}

.industry-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.industry-tabs {
    display: flex;
    gap: 2rem;
}

.industry-tab {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-family: 'Aleo', serif;
}

.industry-tab.active {
    color: #000000;
    border-bottom: 2px solid #000000;
}

.industry-tab:hover {
    color: #000000;
}

.industry-nav-arrows {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cccccc;
    background: none;
    color: #cccccc;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow:not(:disabled):hover {
    border-color: #000000;
    color: #000000;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}

.solution-box:first-child {
    grid-row: 1 / 3;
}

.solution-box {
    border: 2px solid;
    border-radius: 12px;
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.solution-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* Services Section */
.services-section {
    background-color: #000000;
    color: #ffffff;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-section .section-title {
    color: #ffffff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-category {
    background-color: #E8F6FF;
    color: #000000;
    border-radius: 16px;
    padding: 3rem;
}

.service-category:nth-child(2) {
    background-color: #FFEBE8;
}

.service-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
}

.service-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.service-item {
    margin-bottom: 2rem;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    font-family: 'Lato', sans-serif;
}

/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
    color: #000000;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #ffffff;
    color: #000000;
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact-form-section .section-title {
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    font-family: 'Lato', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Content Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
    width: 100%;
    max-width: none;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0 2rem;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.contact-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-logo img {
    max-width: 200px;
    height: auto;
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    font-family: 'Aleo', serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: #e9ecef;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text {
    flex: 1;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

.contact-text strong {
    color: #000000;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #666666;
    text-decoration: underline;
}

/* Contact Form Container */
.contact-form-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: 'Aleo', serif;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

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

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    min-width: 160px;
}

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

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.validation-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-family: 'Lato', sans-serif;
}

.form-errors {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

.error-message {
    color: #721c24;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
}

.error-message:last-child {
    margin-bottom: 0;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem 1.5rem;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
    text-align: center;
    transition: opacity 0.3s ease;
}

.error-message-display {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem 1.5rem;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
    text-align: center;
    transition: opacity 0.3s ease;
}

/* Navigation active state */
.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    width: 100%;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-logo {
    flex: 0 0 auto;
}

.contact-content > div:last-child {
    flex: 0 0 auto;
}

.contact-logo .logo-line {
    font-size: 2.5rem;
    color: #000000;
}

.contact-logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Fallback for missing contact logo */
.contact-logo-image:not([src]), 
.contact-logo-image[src=""],
.contact-logo-image[src*="undefined"] {
    display: none;
}

.contact-logo-image:not([src]) + .contact-logo-fallback,
.contact-logo-image[src=""] + .contact-logo-fallback,
.contact-logo-image[src*="undefined"] + .contact-logo-fallback {
    display: block;
}

.contact-logo-fallback {
    display: none;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 0.8;
}

.contact-logo-fallback .monk {
    display: block;
}

.contact-logo-fallback .stack {
    display: block;
    margin-left: 1.5rem;
}

.contact-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.contact-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* Contact Container - Main Definition */
.contact-container {
    display: flex;
    width: 1224px;
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 155px;
    box-sizing: border-box;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .contact-container {
        gap: 31rem;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* Tablet and below */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .nav-logo-image {
        height: 35px;
        max-width: 100px;
    }
    
    .nav-logo-text {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-line {
        font-size: 3rem;
    }
    
    .logo-line:last-child {
        margin-left: 1rem;
    }
    
    .logo-lottie-container lottie-player {
        width: 250px !important;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .approach-item h3 {
        font-size: 1.3rem;
    }
    
    .approach-item p {
        font-size: 1rem;
    }
    
    .collaborator-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industry-tabs {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .service-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-logo img {
        max-width: 150px;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    /* Contact section responsive fixes for tablet */
    .contact-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .contact-left {
        width: 100%;
        max-width: none;
        padding: 2rem 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-right {
        width: 100%;
        max-width: none;
        padding: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-logo {
        gap: 0.4rem;
    }
    
    .nav-logo-image {
        height: 30px;
        max-width: 80px;
    }
    
    .nav-logo-text {
        font-size: 0.9rem;
    }
    
    /* Contact section mobile fixes */
    .contact-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .contact-left {
        width: 100%;
        max-width: none;
        padding: 1rem 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-right {
        width: 100%;
        max-width: none;
        padding: 0.5rem;
        text-align: center;
    }
    
    .contact-right > div {
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-right > div:first-child span {
        font-size: 1.4rem;
    }
    
    .contact-right > div:not(:first-child) span {
        font-size: 0.9rem;
    }
}

/* iPhone 14 Pro Max and similar devices */
@media (max-width: 430px) {
    .contact-container {
        padding: 0 0.25rem;
        gap: 0.25rem;
    }
    
    .contact-left {
        padding: 0.75rem 0.25rem;
    }
    
    .contact-right {
        padding: 0.25rem;
    }
    
    .contact-right > div:first-child span {
        font-size: 1.2rem;
    }
    
    .contact-right > div:not(:first-child) span {
        font-size: 0.8rem;
    }
}

/* Very small screens - hide logo text to save space */
@media (max-width: 360px) {
    .nav-logo-text {
        display: none;
    }
    
    .nav-logo {
        gap: 0;
    }
    
    .logo-line {
        font-size: 2.5rem;
    }
    
    .logo-line:last-child {
        margin-left: 0.5rem;
    }
    
    .logo-lottie-container lottie-player {
        width: 200px !important;
    }
    
    .hero-section {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .approach-section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .service-category {
        padding: 2rem;
    }
    
    .industry-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .contact-content-grid {
        gap: 2rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .submit-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .contact-logo img {
        max-width: 120px;
    }
    
    .contact-details h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        font-size: 1.2rem;
    }
    
    /* Contact section responsive fixes */
    .contact-container {
        flex-direction: column;
        gap: 0rem;
        
    }
    
    .contact-left {
        width: 100%;
        max-width: 300px;
        padding: 0rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-right {
        width: 100%;
        max-width: none;
        text-align: center;
        padding: 0rem;
    }
    
    .contact-logo {
        text-align: center;
     
    }
}

/* Contact Footer Styles */
#contact {
    background-color: #f5f5f5;
    color: #000000;
    height: auto;
    min-height: 155px;
}

/* Contact right section specific styling */
.contact-right > div:first-child span {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Aleo', serif;
    color: #000000;
}

.contact-right > div:not(:first-child) span {
    font-size: 1.0rem;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: #000000;
    line-height: 1.6;
}


.contact-left {
    width: 300px; /* fixed width */
    padding: 20px;
    background-color: #f5f5f5;
    box-sizing: border-box;
    flex-shrink: 0;
    min-width: 0;
}

.contact-right {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    max-width: 600px;
    width: 100%;
    flex-shrink: 1;
    min-width: 0;
}

/* Error Page Styles */
.error-content {
    text-align: center;
    margin-top: 2rem;
}

.error-code {
    font-size: 6rem;
    color: #D96A5B;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Aleo', serif;
    line-height: 1;
}

.error-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Aleo', serif;
}

.error-description {
    color: #cccccc;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin-bottom: 2rem;
}

.error-request-id {
    color: #888888;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    margin-top: 2rem;
}

.error-request-id code {
    background-color: #333333;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #cccccc;
}

/* Responsive Error Page */
@media (max-width: 768px) {
    .error-code {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 3rem;
    }
    
    .error-title {
        font-size: 1.25rem;
    }
    
    .error-description {
        font-size: 0.9rem;
    }
}

