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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    border-bottom: 2px solid #FFFFFF;
    z-index: 1000;
}

.nav {
    padding: 1.5rem 2rem;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-logo .logo-number {
    color: #FFFF00;
    font-size: 1.75rem;
    margin-left: 0.25rem;
}

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

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #FFFF00;
}

main {
    margin-top: 80px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.hero-text p {
    font-size: 1.125rem;
    color: #FFFFFF;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FFFF00;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: lowercase;
    width: fit-content;
    transition: background-color 0.2s, color 0.2s;
}

.btn-contact:hover {
    background-color: #000000;
    color: #FFFFFF;
    outline: 2px solid #FFFFFF;
    outline-offset: -2px;
}

.logos {
    padding: 4rem 0;
    overflow: hidden;
    background-color: #000000;
}

.logos-container {
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-height: 120px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.services {
    padding: 6rem 2rem;
    background-color: #000000;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-image {
    width: 100%;
    height: 100%;
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.services-text p {
    font-size: 1.125rem;
    color: #FFFFFF;
}

.services-subtitle {
    font-weight: 600;
    margin-top: 0.5rem;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.services-list li {
    font-size: 1.125rem;
    color: #FFFFFF;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #FFFFFF;
}

.services-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-brochure {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #000000;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: lowercase;
    width: fit-content;
    border: 2px solid #FFFFFF;
    transition: background-color 0.2s, color 0.2s;
}

.btn-brochure:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.about {
    padding: 6rem 2rem;
    background-color: #000000;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.about-text p {
    font-size: 1.125rem;
    color: #FFFFFF;
}

.quote {
    margin: 2rem 0;
    padding: 2rem;
    border-left: 2px solid #FFFFFF;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-name {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.quote-title {
    font-size: 0.875rem;
    color: #FFFFFF;
    opacity: 0.8;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stats {
    padding: 6rem 2rem;
    background-color: #000000;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.stat-text {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.5;
}

.cases {
    padding: 6rem 2rem;
    background-color: #000000;
}

.cases-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cases-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 3rem;
    text-align: center;
}

.cases-images {
    display: flex;
    flex-direction: column;
}

.cases-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cases-bottom {
    width: 100%;
}

.case-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.case-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s;
}

.case-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.case-image:hover img {
    opacity: 0;
}

.case-image:hover .case-video {
    opacity: 1;
}

.case-image:hover .case-video {
    pointer-events: auto;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.case-image:hover .case-overlay {
    opacity: 1;
}

.case-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0.5rem;
}

.case-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    text-transform: lowercase;
}

.contact {
    padding: 6rem 2rem;
    background-color: #000000;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-text {
    margin-bottom: 3rem;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background-color: #000000;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFFF00;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFFFFF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select option {
    background-color: #000000;
    color: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.contact-form .btn-contact {
    align-self: flex-start;
    margin-top: 1rem;
}

.footer {
    padding: 4rem 2rem;
    background-color: #000000;
    border-top: 2px solid #FFFFFF;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #FFFF00;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-info p {
    font-size: 0.875rem;
    color: #FFFFFF;
    line-height: 1.6;
}

.about-page {
    padding: 8rem 2rem 6rem;
    background-color: #000000;
    min-height: calc(100vh - 80px);
}

.about-page-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-page h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-page-section {
    margin-bottom: 3rem;
}

.about-page-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.about-page-section p {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-page-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
}

.about-page-list li {
    font-size: 1.125rem;
    color: #FFFFFF;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.8;
}

.about-page-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #FFFFFF;
}

.about-page-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #FFFFFF;
    text-align: center;
}

.about-page-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.contact-page {
    padding: 8rem 2rem 6rem;
    background-color: #000000;
    min-height: calc(100vh - 80px);
}

.contact-page-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-page-intro {
    font-size: 1.125rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .logos-track {
        gap: 3rem;
    }
    
    .logo-item {
        height: 60px;
    }
    
    .logo-item img {
        max-height: 60px;
        max-width: 120px;
    }
    
    .services {
        padding: 4rem 2rem;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-image {
        order: -1;
    }
    
    .services-text h2 {
        font-size: 2rem;
    }
    
    .services-buttons {
        flex-direction: column;
    }
    
    .btn-brochure,
    .btn-contact {
        width: 100%;
        text-align: center;
    }
    
    .about {
        padding: 4rem 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .quote {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .quote-text {
        font-size: 1.125rem;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .stats {
        padding: 4rem 2rem;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cases {
        padding: 4rem 2rem;
    }
    
    .cases-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .cases-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-title {
        font-size: 2rem;
    }
    
    .case-subtitle {
        font-size: 1.25rem;
    }
    
    .contact {
        padding: 4rem 2rem;
    }
    
    .contact-content {
        max-width: 800px;
    }
    
    .contact-text h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
    
    .header {
        position: relative;
    }
    
    main {
        margin-top: 0;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.875rem;
    }
    
    .footer {
        padding: 3rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-page {
        padding: 6rem 2rem 4rem;
    }
    
    .about-page h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .about-page-section {
        margin-bottom: 2rem;
    }
    
    .about-page-section h2 {
        font-size: 1.75rem;
    }
    
    .about-page-section p,
    .about-page-list li {
        font-size: 1rem;
    }
    
    .about-page-cta {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .about-page-cta p {
        font-size: 1.25rem;
    }
    
    .contact-page {
        padding: 6rem 2rem 4rem;
    }
    
    .contact-page h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-page-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-page-form {
        gap: 1.5rem;
    }
}
