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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 80px; /* Height of the fixed topbar */
}

/* Cookie Policy Specific Styles */
        .cookie-main {
            flex: 1;
            background-color: #FFFFFF;
            padding: 20px;
        }

        .cookie-container-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
        }

        .cookie-container {
            width: 80%;
            max-width: 800px;
            background-color: #FFFFFF;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 0 20px rgba(38, 40, 41, 0.1);
            margin: 40px auto;
        }

        .cookie-title {
            color: #262829;
            text-align: center;
            border-bottom: 4px solid #FCCB0F;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }

        .cookie-section-title {
            color: #262829;
            border-bottom: 2px solid #FCCB0F;
            padding-bottom: 10px;
            margin-top: 30px;
        }

        .cookie-content {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .cookie-section {
            margin-bottom: 25px;
        }
