:root {
    --primary-color: #19395d;  /* Blue from the logo lines */
    --secondary-color: #6b7280; /* Keeping this as is for some contrast */
    --accent-color: #ca9d3b;    /* Gold/amber color from rectangles2 */
    --background-color: #d5d6d6; /* Grey background */
    --border-color: #19395d;     /* Light blue from rectangles1 */
}

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

html, body {
    height: 100%;
}

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

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

.content-side {
    padding: 2.5rem 4rem 0 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    flex: 1;
    overflow-y: auto;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.image-side {
    position: fixed;
    right: 0;
    top: 0;
    width: 55%;
    height: 100vh;
    background-image: url('background.png');
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Add this new rule for the diagonal line */
.image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #19395d; /* Navy blue - same as your primary color */
    clip-path: polygon(14.9% 0, 15.1% 0, 0.1% 100%, -0.1% 100%);
    z-index: 1;
}

/* Ensure the image content is above the diagonal line */
.image-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    clip-path: polygon(15.1% 0, 100% 0, 100% 100%, 0.1% 100%);
    z-index: 2;
}

header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

h1 {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.content-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

section {
    position: relative;
}

h2 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.name-parts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.name-part {
    color: var(--secondary-color);
    font-weight: 300;
}

.name-part strong {
    color: var(--primary-color);
    font-weight: 400;
}

.approach p {
    color: var(--secondary-color);
    font-weight: 300;
    margin: 0;
    max-width: 38rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    color: var(--secondary-color);
    font-weight: 300;
    padding: 0.35rem 0;
    transition: all 0.2s ease;
}

.service-item:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

footer {
    margin-top: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--secondary-color);
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        height: auto;
        overflow: auto;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

    .content-side {
        padding: 2rem;
        width: 100%;
    }

    .content-wrapper {
        padding-right: 0;
    }

    .image-side {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .content-sections {
        gap: 3rem;
    }

    header {
        margin-bottom: 3rem;
    }

    .logo {
        width: 28px;
        height: 28px;
        top: 6px;
    }

    .logo-container {
        gap: 0.75rem;
    }
}

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

section {
    animation: fadeIn 0.6s ease-out forwards;
} 