html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'PT Sans', sans-serif;
}

p {
    padding: 0;
    margin: 0;
}

/*BACKGROUND COLORS*/
.background-color-primary {
    background-color: rgba(243, 244, 246, 1);
}

.background-color-secondary {
    background-color: black;
}

.custom-border-styling {
    border-style: none;
    border-radius: 5px;
}

.custom-button-default {
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    border-width: 1px;
}

.custom-button {
    padding: 12px 24px;
    font-size: 14px;
    color: white;
    background-color: #4F46E5;
    border-radius: 5px;
    border-width: 1px;
    border-color: #4F46E5;
    text-decoration: none;
}

.custom-button:hover {
    transition-duration: 0.3s;
    background-color: rgba(79, 70, 229, 0.8);
    border-color: rgba(79, 70, 229, 0.8);
    color: white;
}

.custom-button-2 {
    padding: 15px 25px;
    font-size: 14px;
    color: #4F46E5;
    background-color: white;
    border-radius: 5px;
    border-width: 1px;
    border-color: #4F46E5;
}

.custom-button-2:hover {
    transition-duration: 0.3s;
    color: white;
    background-color: #4F46E5;
}

.body-text {
    font-size: 18px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 100px);
    gap: 10px;
}

.social-icons {
    margin-top: 0.75rem;
}

.social-icons i {
    font-size: 1rem;
    color: #333;
    margin-right: 0.5rem;
    cursor: pointer;
}

.social-icons i:hover {
    transition-duration: 0.3s;
    color: #0d6efd;
}

.fly-in {
    opacity: 0;
    transform: translateY(50px);
    animation: flyInUp 0.8s ease-out forwards;
}

.fly-in.delay-1 {
    animation-delay: 0.3s;
}

.fly-in.delay-2 {
    animation-delay: 0.6s;
}

@keyframes flyInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.body-text {
    font-size: 18px;
}

.description-text {
    font-size: 14px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 100px);
    gap: 10px;
}

.container-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/*COOKIES BANNER STYLING*/
#cookieSection {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 9998;
    transition: opacity 0.5s ease-in-out, bottom 0.5s ease-in-out;
}

#cookieSection.visible {
    bottom: 30px;
}

.cookie-section {
    /*width: 55%;*/
    background-color: #0F172A;
    padding: 20px 10px;
    border-radius: 24px;
    display: flex;
    align-items: center;
}
.cookieContainer{
    background-color: #0F172A;
    border-radius: 24px;
}
.icon-column {
    align-self: flex-start !important; /* Aligns this column to the top of the row */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ensure content inside column is at the top */
    align-items: center; /* Center icon horizontally */
    padding-top: 0; /* Reset any padding that might push content down */
}

/* Your existing icon styles */
.icon {
    background: linear-gradient(to right, rgba(91, 70, 229, 1), rgba(147, 51, 234, 1));
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    width: 40px;
    height: 40px;
}

/* Your existing icon-image styles */
.icon-image {
    width: 18px;
    height: 18px;
}

.cookie-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-right: 10px;
}

.secure-text {
    font-size: 12px;
    color: #34D399;
    background-color: #10B98133;
    border: 1px solid #10B9814D;
    border-radius: 16px;
    padding: 4px 12px;
    text-align: center;
}

.cookie-content {
    font-size: 14px;
    color: rgba(209, 213, 219, 1);
}

.cookie-learn-more {
    font-size: 14px;
    color: #6366F1;
    text-decoration: underline;
}

.cookie-learn-more:hover {
    transition-duration: 0.3s;
    color: rgba(99, 102, 241, 0.8);
}

.cookie-btn {
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cookie-btn-primary {
    background-color: rgba(255, 255, 255, 0.05);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-primary:hover {
    transition-duration: 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-secondary {
    background: linear-gradient(to right, rgba(91, 70, 229, 1), rgba(147, 51, 234, 1));
}

.cookie-btn-secondary:hover {
    transition-duration: 0.3s;
    background: linear-gradient(to right, rgba(91, 70, 229, 1), rgba(147, 51, 234, 0.9));
}

.btn-icon {
    height: 16px;
    width: 16px;
}

.cookie-btn-text {
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.cookie-btn-text:hover {
    transition-duration: 0.3s;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Box */
.cookie-modal-content {
    background-color: #0F172A;
    color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInScale 0.3s ease forwards;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Title and Text */
.modal-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 18px;
    color: #FFFFFF;
}

.modal-content {
    font-size: 10px;
    text-align: start;
    margin-bottom: 10px;
    padding: 8px;
    background-color: inherit;
}

/* Cookie Option Blocks */
.cookie-option {
    margin-bottom: 15px;
    align-content: center;
}

.cookie-option input {
    margin-right: 8px;
    transform: scale(1.2);
}

.cookie-option-title {
    font-size: 14px;
    text-align: start;
    margin-bottom: 14px;
    color: #FFFFFF;
}

.cookie-option-content {
    font-size: 10px;
    text-align: start;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Buttons */
.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.cookie-buttons button {
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px 10px;
}

.cookie-buttons button:hover {
    transition-duration: 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}
