/* Header logo and text layout */
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.header-content .logo {
    width: 80px;
    height: auto;
}

.logo-text {
    letter-spacing: 0.05em;
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    margin: 0;
    color: #2d2b31;
    font-weight: 700;
}

@media screen and (max-width: 40em) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-content .logo {
        width: 60px;
    }
    
    .logo-text {
    letter-spacing: 0.05em;
    font-family: 'Share Tech', sans-serif;
        font-size: 1.8rem;
    }
}

/* Responsive patterns for smaller screens */
@media screen and (max-width: 1000px) {
    .pattern {
        width: 200px;
        opacity: 0.3;
    }
    
    .pattern--left-down,
    .pattern--left-up {
        height: 200px;
        right: 20px;
    }
    
    .pattern--left-middle {
        height: 160px;
        right: 20px;
    }
    
    .pattern--right-middle {
        height: 160px;
        left: 20px;
    }
    
    .pattern--right-down {
        height: 200px;
        left: 20px;
    }
}

@media screen and (max-width: 40em) {
    .pattern {
        width: 120px;
        opacity: 0.2;
    }
    
    .pattern--left-down,
    .pattern--left-up {
        height: 120px;
        right: 10px;
    }
    
    .pattern--left-middle {
        height: 100px;
        right: 10px;
    }
    
    .pattern--right-middle {
        height: 100px;
        left: 10px;
    }
    
    .pattern--right-down {
        height: 120px;
        left: 10px;
    }
}

/* Services section styling */
.services-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.services-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9bccbb;
    font-weight: bold;
    font-size: 1.2rem;
}

@media screen and (max-width: 40em) {
    .services-list {
        margin-bottom: 1.5rem;
    }
}
