/* HOMEPAGE */
* {
    box-sizing: border-box;
}

/* FobKeys.css */
.pricing, .how-it-works, .contact {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background: #1a1a1a;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    text-align: center;
    border-radius: 8px;
}


/* ulandol class for lists */
.ulandol {
    list-style-type: none;
    padding: 0;
}
.ulandol li {
    margin: 10px 0;
    font-size: 18px;
}

/* Rest of Homepage CSS */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: white;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 10px 0; /* Combined from two nav ul definitions */
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}


.hero {
    padding: 100px 20px;
}
.hero h2 {
    font-size: 2.5em;
}

.what-we-can-do, .contact, .footer { /* Combined sections with similar background/color */
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.what-we-can-do h2 {
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    color: #04AA6D;
}



.contact-info {
    margin-top: 10px;
}
.contact-info p {
    margin: 5px 0;
}

footer { /* Added to capture the original footer style */
    text-align: center;
    padding: 10px;
    background: #333;
}

.comment {
    display: none;
}

form {
    background: #222;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
    text-align: center;
}

input[type=text], input[type=email], select, textarea {
    text-align: center;
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-size: 25px;
}

input[type=submit] {
    text-align: center;
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    transform: translateY(-5px);
    background-color: grey;
}

.container {
    border-radius: 5px;
    background-color: #000000;
    padding: 20px;
}

.footer {
    border-top: 2px solid #333;
    font-family: Arial, sans-serif;
}

.footer p {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer a {
    color: #1fd379;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #c8235d;
}

.footer i {
    margin-right: 8px;
    color: #04AA6D;
}

.footer p b {
    font-size: 16px;
    margin-bottom: 10px;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


@media (max-width: 1024px) {
    .item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .navbarlinks {
        display: none;
    }

    #logo {
        width: 280px;
    }

    .item {
        flex: 0 0 calc(100% - 10px);
    }

    .carousel-control {
        padding: 8px;
        font-size: 16px;
    }
}