* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: #f4f4f4;
    color: #1b122d;
    padding: 1em 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

header nav {
    float: right;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #1b122d;
    text-decoration: none;
    font-weight: 500;
}

header nav ul li a.cta {
    background: #ffc414;
    color: #1b122d;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

header nav ul li a.cta:hover {
    background: #e6b213;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
}

.menu-toggle span {
    background: #1b122d;
    height: 3px;
    width: 25px;
    margin-bottom: 5px;
}

#hero {
    background: #1b122d;
    color: #f4f4f4;
    padding: 100px 0;
    text-align: center;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

#hero h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
    animation: fadeInUp 1s ease;
}

#hero p {
    margin-bottom: 30px;
    font-size: 1.2em;
    animation: fadeInUp 1.2s ease;
}

#hero .cta {
    background: #ffc414;
    color: #1b122d;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease, color 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

#hero .cta:hover {
    background: #e6b213;
    color: #1b122d;
}

#services {
    padding: 50px 0;
    text-align: center;
}

#about, #why-privacy-matters, #testimonials, #cta, #articles {
    padding: 50px 0;
    text-align: left;
}

#services h2, #about h2, #why-privacy-matters h2, #testimonials h2, #cta h2, #articles h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service h3 {
    margin-bottom: 10px;
}

.service p {
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.service a {
    color: #ffc414;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service a:hover {
    color: #e6b213;
}

#why-privacy-matters div {
    text-align: Left;
}

#why-privacy-matters p {
    margin-bottom: 15px;
    font-size: 1em;
    
}
#why-privacy-matters ul {
    text-align: left;
    list-style-type: none;
}

#why-privacy-matters div ul li {
    margin-bottom: 10px;
    margin-left: 5%;
    font-size: 1em;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.testimonial {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(45% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
}

.testimonial cite {
    font-size: 0.8em;
    color: #999;
}

#cta {
    background: #ffc414;
    color: #1b122d;
    padding: 50px 0;
    text-align: center;
    border-top-left-radius: 50% 20px;
    border-top-right-radius: 50% 20px;
}

#cta h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

#cta .cta {
    background: #1b122d;
    color: #ffc414;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease, color 0.3s ease;
}

#cta .cta:hover {
    background: #14111f;
    color: #ffc414;
}
article h3{
    padding-bottom: 1%;
    padding-top: 1%;
}
article ul {
    margin-left: 2%;
}

.article-content {
    padding-bottom: 25%;
}

.articles-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.articles-post {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(45% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.articles-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.articles-post h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.articles-post p {
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.articles-post a {
    color: #ffc414;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.articles-post a:hover {
    color: #e6b213;
}

footer {
    background: #1b122d;
    color: #f4f4f4;
    padding: 20px 0;
    text-align: center;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .footer-content div {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
}

footer h3 {
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ffc414;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #e6b213;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }

    header nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        color: #ffc414;
        background: #666;
        position: absolute;
        top: 60px;
        right: 0;
    }

    header nav ul.showing {
        display: flex;
    }

    header nav ul li {
        margin: 10px 0;
    }

    header nav ul li a {
        padding: 10px 20px;
        display: block;
    }

    header .menu-toggle {
        display: flex;
    }

    .service-list {
        flex-direction: column;
    }

    .service {
        flex: 1 1 100%;
    }

    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .articles-posts {
        flex-direction: column;
    }

    .articles-post {
        flex: 1 1 100%;
    }

    footer .footer-content {
        flex-direction: column;
    }

    footer .footer-content div {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 30px 0;
    }

    #hero h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    #hero p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    #hero .cta {
        padding: 8px 16px;
    }

    .service-list {
        flex-direction: column;
    }

    .service {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .articles-posts {
        flex-direction: column;
    }

    .articles-post {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    header .logo {
        font-size: 1.2em;
    }

    header .menu-toggle {
        top: 1em;
        right: 1em;
    }

    #hero h1 {
        font-size: 1.5em;
    }

    #hero p {
        font-size: 0.9em;
    }

    #hero .cta {
        padding: 6px 12px;
    }

    .container {
        width: 95%;
    }

    footer .footer-content {
        flex-direction: column;
    }

    footer .footer-content div {
        margin: 10px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
