﻿.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

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

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #8BC34A 0%, #558B2F 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

footer {
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer a {
    color: white;
    text-decoration: underline;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    overflow: hidden;
}

.header {
    background: white;
    padding: 60px 40px;
    text-align: center;
    color: #333;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

    .logo img {
        height: 120px;
        width: auto;
    }

.logo-text {
    font-size: 3.5rem;
    font-weight: bold;
    color: #558B2F;
}

.content {
    padding: 25px 40px;
}

.section-title {
    font-size: 2rem;
    color: #558B2F;
    margin-bottom: 20px;
    text-align: center;
}

.description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
}

.features {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

    .features h3 {
        color: #558B2F;
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .features ul {
        list-style: none;
        padding: 0;
    }

    .features li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        font-size: 1.1rem;
        color: #555;
    }

        .features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #558B2F;
            font-weight: bold;
            font-size: 1.3rem;
        }

.contact {
    background: linear-gradient(135deg, #8BC34A 0%, #558B2F 100%);
    border-radius: 10px;
    padding: 40px;
    color: white;
    text-align: center;
}

    .contact h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    transition: background 0.3s ease;
}

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .contact-item a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
    }

.contact-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.address-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }

        .logo img {
            height: 100px;
        }

    .logo-text {
        font-size: 2.5rem;
    }

    .header, .content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .features {
        padding: 20px;
    }

    .contact {
        padding: 30px 20px;
    }