:root {
    --salesforce-blue: #00A1E0;
    --dark-blue: #0052cc;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --accent-color: #00A1E0;
    --success-color: #52c41a;
    --error-color: #f5222d;
    --primary-blue: #0047ab;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--accent-color) 25%, #0047ab 75%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-color) 50%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-badges img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-badges img:hover {
    transform: scale(1.1);
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-container {
    width: 100%;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-color) 50%, var(--primary-blue) 100%);
    border-radius: 2px;
}

/* Experience Section */
.experience-section {
    background-color: var(--light-gray);
}

.experience-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 161, 224, 0.2);
}

.experience-card h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.experience-list li:before {
    content: '▸';
    color: var(--accent-color);
    left: 0;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.nested-list {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.nested-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.nested-list li:before {
    content: '◦';
}

/* Offer Section */
.offer-section {
    background-color: var(--white);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 161, 224, 0.3);
    transform: translateY(-8px);
}

.offer-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.offer-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

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

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #0088cc);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

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

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(0, 161, 224, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 161, 224, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.success {
    background: var(--success-color);
}

.submit-btn.error {
    background: var(--error-color);
}

.contact-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-info h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #0088cc;
    text-decoration: underline;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--accent-color) 25%, #0047ab 75%);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0.75rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-badges {
        gap: 0.75rem;
    }

    .hero-badges img {
        width: 70px;
        height: 70px;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .experience-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .experience-list li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offer-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .offer-card h3 {
        font-size: 1.1rem;
    }

    .offer-card p {
        font-size: 0.9rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 0.75rem;
    }

    .process-step {
        width: 100%;
        padding: 1.5rem;
    }

    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0.25rem 0;
        font-size: 1.2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .email-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-brand {
        font-size: 0.9rem;
    }

    .nav-menu {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

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

    .hero-badges {
        gap: 0.5rem;
    }

    .hero-badges img {
        width: 60px;
        height: 60px;
    }

    .section {
        padding: 2rem 0.75rem;
    }

    .section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .section h2:after {
        width: 60px;
    }

    .experience-card,
    .process-step {
        padding: 1rem;
    }

    .experience-card h3,
    .offer-card h3 {
        font-size: 1rem;
    }

    .experience-list li {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }

    .nested-list li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }

    .offer-card {
        padding: 1rem;
    }

    .offer-card p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 1rem;
        border-left-width: 3px;
    }

    .contact-info h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .email-link {
        font-size: 0.9rem;
    }

    .contact-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }

    .footer {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

img {
    max-height: 140px;
    padding: 5px;
}

.single-entry {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    font-weight: bold;
}

.details {
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: left;
}

.description {
    padding-bottom: 10px;
}

a {
    color: white;
    text-decoration: unset;
}

a:hover {
    text-shadow: white 1px 0 10px;
    font-weight: 300;
}

.typewrite {
    cursor: default;
    text-shadow: white 1px 0 10px;
}

@media only screen and (max-width: 600px) {
    .logo {
        flex-direction: column;
    }
}

@media only screen and (max-width: 800px) {
    .container {
        flex-direction: column;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
    }
    .subcontainer{
        min-height: 100vh;
        scroll-snap-align: start;
    }
    img {
        max-width: 100px;
    }
    .title {
        font-size: 3vh;
        padding: 5px;
        margin-top: 30vh;
    }
    .position {
        font-size: 2vh;
    }
    .single-entry {
        flex-direction: column;
    }
}

@media only screen and (max-width: 1250px) {
    .right {
        flex-direction: column;
    }
    .single-entry {
        flex-direction: column;
        align-items: center;
    }
    .logo {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    img {
        padding: 10px;
    }
}