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

:root {
    --color-background-accent: #f6f5eb;
    --color-text-accent: #da3419;
    --color-dark: #4c2822;
    --color-light: #ffffff;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    color: var(--color-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

h1 {
    font-size: 72px;
    line-height: normal;
}

h1 span {
    color: var(--color-text-accent);
}

h2 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 40px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 200;
}

html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    background-color: var(--color-background-accent);
    padding: 24px 0px;
    z-index: 200;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .navbar-logo {
    display: flex;
    align-items: stretch;
}

.navbar .btn.contact {
    font-family: "Inter", sans-serif;
    padding: 8px 16px;
    font-size: 12px;
}

.navbar .navbar-buttons {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

/* Language switcher */

ul.lang {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

ul.lang li label {
    padding: 2px 6px;
    color: var(--color-dark);
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

ul.lang li input[type="radio"] {
    opacity: 0;
    width: 0px;
    height: 0px;
}

ul.lang li input[type="radio"]:checked ~ label {
    background: #e0debe;
    color: var(--color-text-accent);
}

/* Content Styles */

.content .container {
    background: url("../images/R.svg") no-repeat 80px 100px;
}

.content .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 96px;
    padding-top: 100px;
}

.content .container .call-email {
    display: inline-flex;
    vertical-align: middle;
    padding: 12px 24px;
    background-color: var(--color-background-accent);
    color: var(--color-dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
}

.content .logo-large {
    margin-top: 64px;
}

.content .images {
    display: flex;
    gap: 16px;
    height: 300px;
    width: 100%;
    align-items: stretch;
    overflow-x: auto;
}

.content .images img {
    object-fit: scale-down;
}

/* Service Cards*/

.content .services {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 96px;
    align-items: stretch;
}

.content .service-card {
    background-color: var(--color-background-accent);
    min-width: 300px;
    border-radius: 16px;
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    font-weight: 200;
}

.content .service-card h3 {
    color: var(--color-text-accent);
}

/* Steps List */

.content .steps-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 96px;
    align-items: stretch;
}

.content .step-item {
    min-width: 250px;
    border-radius: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    font-weight: 200;
}

.content .counter {
    font-size: 24px;
    font-weight: 700;
    background-color: var(--color-background-accent);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content .contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: start;
}

.content .contact a {
    font-weight: 600;
    color: var(--color-text-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.content .contact i {
    color: var(--color-dark);
}

/* Experience Section */

.content .experience {
    display: flex;
    align-items: center;
    position: relative;
}

.content .experience img {
    position: absolute;
    left: 48px;
    top: 0px;
    z-index: 0;
}
.content .experience p {
    font-size: 48px;
    font-weight: 100;
    line-height: normal;
    margin-left: 120px;
    margin-top: 60px;
    z-index: 10;
}

/* Quote Section */
.content .quote {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 48px;
    position: relative;
}

.content .quote img {
    position: absolute;
    left: 48px;
    top: 0px;
    z-index: 0;
}

.content .quote p {
    font-size: 32px;
    font-weight: 100;
    line-height: 1.4;
    margin-left: 60px;
    margin-top: 40px;
    z-index: 10;
}

/* Contact Section */
.content .contact-section {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background-color: var(--color-background-accent);
    gap: 48px;
    width: 100%;
    align-items: stretch;
    flex-wrap: wrap;
}

.content .contact-section .contact-details {
    min-width: 300px;
}

.content .contact-section .contact-details p {
    font-weight: 200;
}

.content .contact-section p {
    margin-top: 48px;
}

.content .contact-section .contact-details h4 {
    margin-bottom: 24px;
}

.content .contact-section .map {
    border-color: #ffffff;
    border-width: 8px;
    border-style: solid;
    width: 500px;
    height: 370px;
}

.content .contact-section .map .map-pin {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 0px 0px 40px 0px;
    width: 100%;
    font-weight: 200;
    font-size: 14px;
}

.footer a {
    font-weight: 500;
    color: var(--color-text-accent);
}

/* Cookies */

.cookies {
    display: none;
    flex-direction: column;
    gap: 40px;
    align-items: baseline;
    position: fixed;
    margin: 0 auto;
    max-width: 800px;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background-color: var(--color-background-accent);
    padding: 40px;
    box-shadow: 0px 0px 10px 3px #4c282222;
    z-index: 10000;
}

.cookies h2 {
    font-weight: 700;
    margin-bottom: 0px;
}

.cookies-desc {
    line-height: 20px;
    color: var(--color-dark);
}

/* Utility Classes */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
}

.divider {
    width: 64px;
    height: 4px;
    background-color: var(--color-text-accent);
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    vertical-align: middle;
    padding: 8px 32px;
    background-color: var(--color-dark);
    color: var(--color-light);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: 0.3s;
}

b {
    font-weight: 700;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .logo-large {
        width: 200px;
        height: auto;
    }
    h1 {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .content .container {
        padding-top: 80px;
        gap: 80px;
        background: url("../images/R.svg") no-repeat 16px 80px;
        background-size: 90% auto;
    }
    .content .container h2 {
        margin-bottom: 24px;
    }
    .content .logo-large {
        margin-top: 32px;
    }
    .navbar {
        padding: 16px 0px;
    }
    .navbar .btn.contact {
        padding: 6px 12px;
        font-size: 10px;
    }
    h1 {
        font-size: 36px;
    }
    .content .experience img {
        left: 24px;
    }
    .content .experience p {
        font-size: 32px;
        margin-left: 80px;
    }
    .content .quote img {
        left: 24px;
    }
    .content .quote p {
        font-size: 24px;
        margin-left: 40px;
    }
    .content .contact-section {
        padding: 40px 24px;
    }
}
