body {
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background: #1f1f1f;
    color: #F7F9F9;
    margin: 0;
    padding: 1rem;
    gap: 60px;
    scroll-behavior: smooth;
}

@media (max-width: 480px) {
    body {
        padding: 0.75rem;
        gap: 40px;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 10vw;
    margin-right: 10vw;
    padding: 20px 0;
    border-bottom: 1px solid rgba(247, 249, 249, 0.1);
}

@media (max-width: 768px) {
    .header {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
        flex-direction: column;
        gap: 15px;
    }
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #52b788;
    word-break: break-word;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
        text-align: center;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #F7F9F9;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.nav-links a:hover {
    color: #52b788;
}

.nav-links a:active {
    background: rgba(82, 183, 136, 0.2);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

h1 {
    font-size: 3.5rem;
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    animation: .5s slide-in-from-left;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        animation: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        width: 100%;
    }
}

h2 {
    font-size: 2.2rem;
    margin: 0 0 25px 0;
    color: #52b788;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.4rem;
        margin: 0 0 15px 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .hero-content {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        min-width: auto;
        gap: 12px;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(247, 249, 249, 0.7);
    width: 90%;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.cta-button {
    background-color: #52b788;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    font-weight: 600;
    min-height: 48px;
    touch-action: manipulation;
}

.cta-button:hover {
    background-color: #40a169;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.hero, .header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-left: 10vw;
    margin-right: 10vw;
}

.hero-wrapper, .services-wrapper {
    height: fit-content;
    width: auto;
}

.hero {
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
}

.form {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(82, 183, 136, 0.15), inset 0 1px 0 rgba(82, 183, 136, 0.1);
    border: 1px solid rgba(82, 183, 136, 0.2);
    min-width: 320px;
    backdrop-filter: blur(10px);
    animation: 1s slide-in-from-right;
}

@media (max-width: 768px) {
    .form {
        min-width: auto;
        width: 100%;
        padding: 24px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .form {
        padding: 20px;
        border-radius: 8px;
        gap: 10px;
    }
}

.textbox {
    background-color: #F7F9F9;
    border: 1px solid rgba(82, 183, 136, 0.3);
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #1f1f1f;
    transition: all 0.3s ease;
    min-height: 44px;
}

.textbox::placeholder {
    color: rgba(31, 31, 31, 0.5);
}

.textbox:focus {
    outline: none;
    background-color: #F7F9F9;
    border-color: #52b788;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .textbox {
        font-size: 16px;
    }
}

.form-input {
    background-color: #192323;
    border: 1px solid rgba(82, 183, 136, 0.3);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #F7F9F9;
    transition: all 0.3s ease;
    height: 30px;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #192323 inset;
    -webkit-text-fill-color: #F7F9F9;
    border-color: rgba(82, 183, 136, 0.3);
}

.form-input:-webkit-autofill {
    -webkit-text-fill-color: #F7F9F9;
}

.form-input:focus {
    outline: none;
    border-color: #52b788;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
}

#email:focus {
    outline: none;
    border-color: #52b788;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
}

select {
    background-color: #192323;
    border: 1px solid rgba(82, 183, 136, 0.3);
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #F7F9F9;
    transition: all 0.3s ease;
    min-height: 48px;
    cursor: pointer;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 36px;
}

select:focus {
    outline: none;
    border-color: #52b788;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    select {
        font-size: 16px;
    }
}

textarea {
    min-height: 120px;
    resize: vertical;
    max-height: 300px;
    background-color: #192323;
    border: 1px solid rgba(82, 183, 136, 0.3);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #F7F9F9;
    transition: all 0.3s ease;
    resize: none;
}

textarea::placeholder {
    color: rgba(247, 249, 249, 0.5);
}

textarea:focus {
    outline: none;
    border-color: #52b788;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
}

@media (max-width: 480px) {
    textarea {
        font-size: 16px;
        min-height: 100px;
    }
}

.footer {
    background: #0f0f0f;
    padding: 50px 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -1rem;
    border-top: 1px solid rgba(82, 183, 136, 0.2);
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0.75rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    margin-left: 10vw;
    margin-right: 10vw;
}

.footer-section h3 {
    color: #52b788;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(247, 249, 249, 0.7);
    margin: 8px 0;
    font-weight: normal;
}

.footer-section a {
    color: #52b788;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-section a:hover {
    color: #F7F9F9;
}

.footer-section a:active {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    color: rgba(247, 249, 249, 0.5);
    padding-top: 40px;
    border-top: 1px solid rgba(82, 183, 136, 0.1);
    margin-left: 10vw;
    margin-right: 10vw;
}

@keyframes slide-in-from-top {
    from {
        transform: translateY(-100%);
    } to {
        transform: translateY(0%);
    }
}

@keyframes slide-in-from-bottom {
    from {
        transform: translateY(100%);
    } to {
        transform: translateY(0%);
    }
}

@keyframes slide-in-from-left {
    from {
        transform: translateX(-50%);
    } to {
        transform: translateX(0%);
    }
}

@keyframes slide-in-from-right {
    from {
        transform: translateX(100%);
    } to {
        transform: translateX(0%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        padding: 0 1rem;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        flex: none;
        min-width: auto;
    }

    .hero-subtitle {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 200px;
    }

    .hero-picture {
        max-width: 100%;
        min-width: 200px;
    }

    .about-section {
        margin-left: 0;
        margin-right: 0;
        padding: 30px 1rem;
    }

    .services-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding: 0 1rem;
        flex-direction: column;
        align-items: center;
    }

    .services-card {
        width: 100%;
        max-width: 300px;
    }

    .testimonials-section {
        margin-left: 0;
        margin-right: 0;
        padding: 0 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 1rem;
    }
}