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

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Desktop and Mobile Layout Control */
.desktop-layout {
    display: block;
}

.mobile-layout {
    display: none;
}

@media (max-width: 768px) {
    .desktop-layout {
        display: none;
    }
    
    .mobile-layout {
        display: block;
    }
}

.logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 120px;
    height: auto;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.profile-img {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f3f4f6;
    flex-shrink: 0;
}

.hero-text {
    text-align: left;
    max-width: 28rem;
}

.hero-text h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 600;
    color: #15558C;
    margin-bottom: 1.5rem;
}

.hero-text .tagline {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #15558C;
    font-weight: 600;
    margin-bottom: 1rem;
}

.location {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1023px) {
    .location {
        justify-content: center;
    }
}

.location img {
    width: 1.25rem;
    height: 1.25rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background-color: #15558C;
    color: white;
    border: 2px solid #15558C;
}

.btn-primary:hover {
    background-color: #0f4470;
    border-color: #0f4470;
}

.btn-secondary {
    border: 2px solid #15558C;
    color: #15558C;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    color: #15558C;
    border-color: #15558C;
}

/* Mobile specific */
.mobile-hero {
    text-align: center;
    padding: 2rem 1rem;
}

.mobile-hero .logo {
    position: static;
    display: block;
    margin: 0 auto 2rem auto;
}

.mobile-hero .profile-img {
    margin: 0 auto 2rem auto;
}

.mobile-hero h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.mobile-hero .buttons {
    flex-direction: column;
    max-width: 24rem;
    margin: 0 auto 3rem auto;
}

/* Salesforce section */
.salesforce-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 3rem;
    margin: 0 -2rem 4rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    border-radius: 0.5rem;
    background-color: #eff6ff;
}

.salesforce-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .salesforce-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
}

.salesforce-logo {
    width: 12rem;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    align-self: flex-start;
}

@media (max-width: 767px) {
    .salesforce-logo {
        width: 10rem;
        height: auto;
        object-fit: contain;
        align-self: flex-start;
    }
}

.salesforce-text {
    text-align: left;
}

.salesforce-text p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #15558C;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .salesforce-text p {
        font-size: 1.25rem;
    }
}

/* AI Focus Areas */
.ai-focus {
    padding: 4rem 0;
    background-color: white;
}

.ai-focus .container {
    max-width: 64rem;
}

.ai-focus h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: #15558C;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .ai-focus h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

.ai-focus .subtitle {
    font-size: 1.25rem;
    color: #15558C;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
    .ai-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.ai-item {
    background-color: white;
    /*border-radius: 0.5rem;*/
    padding: 2rem;
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;*/
}

.ai-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #15558C;
    margin-bottom: 1rem;
}

.ai-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Design Knowledge Section */
.design-knowledge {
    position: relative;
    min-height: 32rem;
    background-image: url('img/ai-human-interaction.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

..design-knowledge p {
    line-height: 130%;
} 

.overlay-text {
    text-align: center;
    max-width: 28rem;
    padding: 0 2rem;
}

.overlay-text h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    color: #15558C;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .overlay-text h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

.overlay-text p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.overlay-text p:last-child {
    margin-bottom: 0;
}

/* Full Stack Designer */
.full-stack {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
}

.full-stack-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .full-stack-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
}

.full-stack-img {
    width: 100%;
    max-width: 28rem;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    align-self: flex-start;
}

@media (max-width: 767px) {
    .full-stack-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        align-self: flex-start;
    }
}

@media (min-width: 1024px) {
    .full-stack-img {
        width: 50%;
        object-fit: contain;
        align-self: flex-start;
    }
}

.full-stack-text {
    color: white;
    text-align: left;
    flex-grow: 1;
}

@media (min-width: 1024px) {
    .full-stack-text {
        width: 50%;
    }
}

.full-stack-text h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .full-stack-text h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.full-stack-text .intro {
    font-size: 1.25rem;
    line-height: 1.625rem;
    margin-bottom: 2rem;
}

.full-stack-text .subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.experience-list {
    space: 1rem 0;
}

.experience-item {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.experience-item .title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.experience-item .description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    font-size: 1rem;
}