@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
    --orange-inwest: #f56e00;
    --blue-inwest: #1c52a6;
    --gray-inwest: #e8e8ed;
    --black: #000000;
    --ink: #141414;
    --cream: #f6f3ee;
    --paper: #ffffff;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
    --radius-lg: 18px;
    --radius-md: 10px;
}

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

button,
input,
textarea,
select {
    font-family: inherit;
}

html,
body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background:
        radial-gradient(
            800px 500px at 10% 10%,
            rgba(245, 110, 0, 0.08),
            transparent 60%
        ),
        radial-gradient(
            900px 600px at 90% 0%,
            rgba(28, 82, 166, 0.12),
            transparent 60%
        ),
        linear-gradient(180deg, #f9f7f2 0%, #ffffff 65%);
    min-height: 100vh;
    color: var(--ink);
    overflow-x: hidden;
}

.metric {
    font-family: "Fraunces", serif;
    font-weight: 600;
}

/* Bottom Sticky Navbar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--blue-inwest);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
}

.bottom-nav__link {
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--orange-inwest);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 4px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
}

.bottom-nav__link:hover {
    background: rgba(245, 110, 0, 0.15);
}

/* Hero Section - Blue background design */
.hero-wrapper {
    background: var(--blue-inwest);
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 60px 80px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    padding-right: 40px;
}

.hero-logo-container {
    margin-bottom: 0;
}

.hero-logo {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
}

.hero-bottom {
    margin-top: auto;
}

.hero-description {
    font-size: 24px;
    color: #ffffff;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 36px;
    font-family: "Outfit";
}
.hero-buttons {
    display: flex;
    gap: 32px;
}

.btn {
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 22px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--orange-inwest);
    color: #ffffff;
    border: 2px solid var(--orange-inwest);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 110, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--orange-inwest);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-right {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

/* Decorative W image */
.hero-decoration-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    object-fit: contain;
}

/* About Section */
.about-section {
    padding: 140px 120px;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 160px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left,
.about-right {
    position: relative;
}

.about-left h2,
.about-right h2 {
    font-family: "Outfit", sans-serif;
    font-size: 52px;
    color: var(--black);
    letter-spacing: -1.5px;
    margin-bottom: 0;
    line-height: 1;
    display: inline-block;
    position: relative;
}

.about-left h2::after,
.about-right h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 100px;
    height: 7px;
    background: var(--orange-inwest);
    border-radius: 4px;
}

.about-left p,
.about-right p {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.75;
    color: #817474;
    margin-top: 50px;
    margin-left: 80px;
    max-width: 400px;
}

.highlight-orange {
    color: var(--orange-inwest);
    font-weight: 400;
}

/* Team Section */
.team-section {
    padding: 90px 70px 110px;
    background: var(--orange-inwest);
}

.team-header {
    max-width: 820px;
    margin-bottom: 52px;
}

.team-section h2 {
    font-family: "Outfit", sans-serif;
    font-size: 44px;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
    display: inline-block;
    position: relative;
}

.team-section h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    width: 76px;
    height: 6px;
    border-radius: 999px;
    background: var(--blue-inwest);
}

.team-intro {
    font-size: 18px;
    color: #ffffff;
    min-width: 90vw;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.team-card {
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: none;
    border: 6px solid transparent;
    background: #1c52a6;
    display: flex;
    flex-direction: column;
}

.team-card--blue {
    background: var(--blue-inwest);
    border-color: var(--blue-inwest);
}

.team-card--orange {
    background: var(--blue-inwest);
    border-color: var(--blue-inwest);
}

.team-card__photo {
    border-radius: 8px;
    padding: 12px;
    margin: 0 auto 16px;
    width: 100%;
}

.team-card__photo img {
    width: 100%;
    display: block;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-card__name {
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card__name--accent {
    color: var(--orange-inwest);
}

.team-card__name--blue {
    color: var(--orange-inwest);
}

.team-card__role {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0;
}

.team-card__role--light {
    color: #ffffff;
}

.team-card__role--dark {
    color: #ffffff;
}

/* Portfolio Section */
.portfolio-section {
    padding: 70px 70px 110px;
    background: var(--blue-inwest);
    text-align: center;
}

.portfolio-section h2 {
    font-family: "Outfit", sans-serif;
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 70px;
    display: inline-block;
    position: relative;
}

.portfolio-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 48px;
    display: none;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.portfolio-filter {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 600;
    padding: 14px 44px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    color: var(--orange-inwest);
    border: 3px solid var(--orange-inwest);
}

.portfolio-filter--active {
    background: var(--orange-inwest);
    color: #ffffff;
}

.portfolio-filter:not(.portfolio-filter--active):hover {
    background: rgba(245, 110, 0, 0.15);
}

.portfolio-section h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -12px;
    width: 50px;
    height: 5px;
    border-radius: 999px;
    background: var(--orange-inwest);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 16/9;
    background: #ffffff;
    border: 2px solid var(--orange-inwest);
    border-radius: 6px;
    transition: none;
    cursor: default;
    overflow: hidden;
}

.portfolio-item--has-description {
    cursor: pointer;
}

.portfolio-item--has-description:hover {
    border-color: var(--orange-inwest);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.focus-item {
    transition:
        transform 0.3s ease,
        background 0.3s ease;
    border-radius: 12px;
    padding: 8px;
}

.focus-item:hover {
    transform: translateY(-4px);
    background: rgba(28, 82, 166, 0.06);
}

.contact-btn-orange:hover,
.btn:hover {
    transform: translateY(-2px);
}

.hero-illustration:hover {
    transform: translateY(-4px);
}

.logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #ffffff;
}

.portfolio-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: none;
}

.portfolio-item:hover .portfolio-logo {
    opacity: 0.1;
    filter: grayscale(0%);
}

.more-coming .logo-wrapper {
    padding: 40px;
    background: var(--gray-inwest);
}

.more-text {
    color: #505050;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Focus Areas Section */
.focus-section {
    background: #ffffff;
}

.focus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.focus-illustration {
    width: 100%;
    max-width: 620px;
}

.focus-illustration img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.focus-left--bg {
    background: url("/images/bg-focus.png") center/cover no-repeat;
    border-radius: 0;
    min-height: 420px;
    height: 100%;
}

.focus-right h2 {
    font-family: "Outfit", sans-serif;
    font-size: 40px;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    align-self: flex-start;
}

.focus-right h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 78px;
    height: 6px;
    border-radius: 999px;
    background: var(--orange-inwest);
}

.focus-right {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 80px;
}

.focus-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 35px;
    margin-top: 0;
}

.focus-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.focus-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: var(--orange-inwest);
    margin-top: 0;
}

.focus-item.tone-blue .focus-icon {
    color: var(--blue-inwest);
}

.focus-item.tone-orange .focus-icon {
    color: var(--orange-inwest);
}

.focus-item.tone-black .focus-icon {
    color: var(--black);
}

.focus-icon svg {
    width: 36px;
    height: 36px;
}

.focus-icon svg * {
    stroke: currentColor;
    fill: none;
}

.focus-icon svg circle:last-child {
    fill: currentColor;
}

.focus-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.focus-item h3 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 2px;
    margin-top: 0;
}

.focus-item p {
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 1.35;
    margin: 0;
    max-width: 450px;
}

/* Get in Touch Section */
.getintouch-section {
    position: relative;
    padding: 60px 70px 180px;
    background: linear-gradient(180deg, #1c52a6 0%, #3f6ea5 18%, #efe7d6 100%);
    overflow: hidden;
    min-height: 620px;
}

.getintouch-section::after {
    content: none;
}

.getintouch-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    margin-top: 168px;
}

.getintouch-title {
    font-family: "Outfit", sans-serif;
    font-size: 150px;
    color: var(--orange-inwest);
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 56px;
    line-height: 1;
}

.getintouch-subtitle {
    margin-bottom: 36px;
}

.getintouch-subtitle h3 {
    font-size: 22px;
    color: #4d4239;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    font-family: "Outfit";
}

.getintouch-subtitle p {
    font-size: 20px;
    font-family: "Outfit", sans-serif;
    line-height: 1.65;
    color: #6f6258;
}

.contact-btn-orange {
    padding: 16px 36px;
    background: var(--orange-inwest);
    color: #ffffff;
    border: 2px solid var(--orange-inwest);
    border-radius: 6px;
    font-size: 22px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    box-shadow: none;
}

.contact-btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(245, 110, 0, 0.32);
}

.getintouch-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-family: "Outfit", sans-serif;
}

.contact-info h3 {
    font-size: 18px;
    color: #4d4239;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info .location {
    font-size: 16px;
    color: #6f6258;
    margin-bottom: 8px;
}

.contact-info .email {
    font-size: 16px;
}

.contact-info .email a {
    color: #6f6258;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .email a:hover {
    color: var(--orange-inwest);
    text-decoration: underline;
}

.copyright p {
    font-size: 12px;
    color: #6f6258;
    margin: 0;
    padding-top: 14px;
    border-top: 3px solid rgba(88, 78, 70, 0.3);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #ffffff;
    padding: 56px;
    border-radius: var(--radius-md);
    max-width: 620px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    color: #777777;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--black);
}

.modal h2 {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

#portfolioModalLogoLink {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    cursor: pointer;
}

#portfolioModalLogoLink:hover {
    opacity: 0.8;
}

.portfolio-modal-logo {
    max-width: 220px;
    max-height: 90px;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
    filter: none;
}

#portfolioModalDescription ul,
#portfolioModalDescription ol {
    margin: 0.4rem 0 0.4rem 1.2rem;
    padding-left: 1.2rem;
    list-style-position: inside;
}

#portfolioModalDescription li {
    margin: 0.3rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #404040;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
    color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-inwest);
    box-shadow: 0 0 0 3px rgba(28, 82, 166, 0.12);
}

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

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: #ffffff;
    border: 1px solid var(--black);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.submit-button:hover {
    background: #2b2b2b;
    border-color: #2b2b2b;
}

.success-message {
    background: rgba(28, 82, 166, 0.12);
    color: var(--blue-inwest);
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    [data-aos],
    .reveal,
    .reveal-stagger > * {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

footer {
    text-align: center;
    padding: 50px 20px 70px;
    color: #737373;
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: revealUp 0.9s ease forwards;
}

.reveal.delay-1 {
    animation-delay: 0.12s;
}
.reveal.delay-2 {
    animation-delay: 0.24s;
}
.reveal.delay-3 {
    animation-delay: 0.36s;
}
.reveal.delay-4 {
    animation-delay: 0.48s;
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    animation: revealUp 0.9s ease forwards;
}

.reveal-stagger > *:nth-child(1) {
    animation-delay: 0.08s;
}
.reveal-stagger > *:nth-child(2) {
    animation-delay: 0.2s;
}
.reveal-stagger > *:nth-child(3) {
    animation-delay: 0.32s;
}
.reveal-stagger > *:nth-child(4) {
    animation-delay: 0.44s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 50px 40px 70px;
    }

    .hero-left {
        min-height: 70vh;
    }

    .hero-logo {
        max-width: 520px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-decoration-img {
        max-width: 550px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 18px;
    }

    .about-section {
        padding: 100px 60px;
    }

    .about-grid {
        gap: 100px;
    }

    .about-left h2,
    .about-right h2 {
        font-size: 44px;
    }

    .about-left p,
    .about-right p {
        margin-left: 50px;
        margin-top: 45px;
        max-width: 360px;
    }

    .focus-item p {
        white-space: normal;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 970px) {
    .focus-section {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .bottom-nav {
        gap: 4px;
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .bottom-nav__link {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero {
        padding: 50px 24px 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left {
        padding-right: 0;
        min-height: auto;
    }

    .hero-logo {
        max-width: 100%;
    }

    .hero-logo-container {
        margin-bottom: 60px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 36px;
        font-size: 17px;
    }

    .hero-right {
        display: none;
    }

    .about-section,
    .team-section,
    .portfolio-section,
    .focus-section,
    .getintouch-section {
        padding: 70px 28px;
    }

    .about-grid,
    .focus-content,
    .getintouch-content {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .about-left h2,
    .about-right h2 {
        font-size: 40px;
    }

    .about-left h2::after,
    .about-right h2::after {
        width: 70px;
        height: 6px;
    }

    .about-left p,
    .about-right p {
        margin-left: 40px;
        margin-top: 40px;
        max-width: 100%;
        font-size: 17px;
    }

    .team-section h2 {
        font-size: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .focus-right h2 {
        font-size: 36px;
    }

    .focus-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .focus-illustration {
        max-width: 100%;
    }

    .focus-left--bg {
        display: none;
    }

    .focus-right {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .focus-list {
        gap: 16px;
    }

    .focus-item h3 {
        font-size: 20px;
    }

    .focus-item p {
        font-size: 16px;
        white-space: normal;
    }

    .getintouch-title {
        font-size: 44px;
        margin-bottom: 28px;
    }

    .getintouch-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 50px;
    }

    .getintouch-right {
        align-items: flex-start;
        text-align: left;
    }

    .modal-content {
        padding: 36px 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 16px 50px;
    }

    .hero-logo-container {
        margin-bottom: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 16px;
    }

    .contact-btn-orange {
        padding: 14px 28px;
    }

    .getintouch-left h2 {
        font-size: 38px;
    }
}
