body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 40px 10px;
    background: #282a36;
    color: #f8f8f2;
}
.container {
    max-width: 650px;
    margin: 0 auto;
    background: #44475a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
h1 {
    color: #50fa7b;
    text-align: center;
}

.header-title-link {
    text-decoration: none;
    color: inherit;
}

h2 {
    color: #f8f8f2;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: bold;
    color: #bd93f9;
}
.form-group input {
    width: 100%;
    padding: .75rem;
    font-size: 1rem;
    border: 1px solid #6272a4;
    border-radius: 4px;
    box-sizing: border-box;
    background: #282a36;
    color: #f8f8f2;
}
.btn {
    display: inline-block;
    background: #bd93f9;
    color: #f8f8f2;
    padding: .75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #ff79c6;
}
.downloads {
    margin-top: 2rem;
    border-top: 1px solid #6272a4;
    padding-top: 1rem;
    text-align: center;
}

.contact-list {
    list-style: none;
    padding: 0;
    text-align: left;
}
.contact-list li {
    margin-bottom: 0.5rem;
    background: #282a36;
    padding: 0.75rem;
    border-radius: 4px;
    color: #f8f8f2;
}
.contact-list li label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list .contact-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: transparent;
    padding: 0;
}

.toggle-container {
    background: #282a36;
    padding: 0.75rem;
    border-radius: 4px;
}

.details-container {
    flex-grow: 1;
    display: flex;
    gap: 0.5rem;
}

.details-container .btn {
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-details {
    padding-top: 5px;
}

.contact-info .email,
.contact-info .phone {
    font-size: 0.8em;
    color: #bd93f9;
}

.get-contacts-form {
    text-align: center;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #44475A;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #50fa7b;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]:checked {
    border-color: #50fa7b;
}

.flash-message {
    margin: 1rem 0;
    padding: 0.75rem;
    border-radius: 4px;
    background: #50fa7b;
    color: #282a36;
    font-weight: bold;
    text-align: center;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #6272a4;
    font-style: italic;
}

.btn-email {
    background: #8be9fd;
    margin-left: 0.5rem;
}

.btn-email:hover {
    background: #50fa7b;
}

